s_id
stringlengths
10
10
p_id
stringlengths
6
6
u_id
stringlengths
10
10
date
stringlengths
10
10
language
stringclasses
1 value
original_language
stringclasses
11 values
filename_ext
stringclasses
1 value
status
stringclasses
1 value
cpu_time
int64
0
100
memory
stringlengths
4
6
code_size
int64
15
14.7k
code
stringlengths
15
14.7k
problem_id
stringlengths
6
6
problem_description
stringlengths
358
9.83k
input
stringlengths
2
4.87k
output
stringclasses
807 values
__index_level_0__
int64
1.1k
1.22M
s569883497
p04044
u163791883
1567482430
Python
Python (3.4.3)
py
Accepted
17
3060
96
N, L = map(int, input().split()) li = sorted(list(input() for _ in range(N))) print(''.join(li))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,517
s956849389
p04044
u866369660
1567481952
Python
Python (3.4.3)
py
Accepted
17
3060
86
N, L = input().split() s = [input() for x in range(int(N))] s.sort() print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,518
s668362904
p04044
u734876600
1567479529
Python
Python (3.4.3)
py
Accepted
18
3060
105
n,l = map(int,input().split()) s = [] for i in range(n): s.append(input()) s.sort() print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,519
s203620643
p04044
u187857228
1567460918
Python
Python (3.4.3)
py
Accepted
17
3060
177
def test(): n,l = map(int,input().split()) a = [] for i in range(n): a.append(input()) print("".join(sorted(a))) if __name__ == "__main__": test()
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,520
s737186394
p04044
u657971041
1567439149
Python
Python (3.4.3)
py
Accepted
18
3060
92
n,l=(int(x) for x in input().split()) s=sorted([input() for i in range(n)]) print(*s,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,521
s808607264
p04044
u573272932
1567420696
Python
Python (3.4.3)
py
Accepted
17
3060
90
N, L = map(int, input().split()) R = sorted([input() for _ in range(N)]) print("".join(R))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,522
s367250187
p04044
u193604641
1567394196
Python
Python (2.7.6)
py
Accepted
10
2568
142
def main(): n, m = [int(x) for x in raw_input().split(' ')] strs = [raw_input() for x in xrange(n)] print(''.join(sorted(strs))) main()
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,523
s628040606
p04044
u089376182
1567342358
Python
Python (3.4.3)
py
Accepted
18
3060
85
n, l = map(int, input().split()) print(''.join(sorted([input() for i in range(n)])))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,524
s023445837
p04044
u756569003
1567304391
Python
Python (3.4.3)
py
Accepted
17
3060
99
n, l = [int(i) for i in input().split()] a = [input() for j in range(n)] a.sort() print(''.join(a))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,525
s296133368
p04044
u116002573
1567273906
Python
Python (3.4.3)
py
Accepted
19
3060
190
def main(): N, L = map(int, input().split()) w = [] for _ in range(N): w.append(input()) w.sort() return "".join(w) if __name__ == '__main__': print(main())
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,526
s838333831
p04044
u919025034
1567241218
Python
Python (3.4.3)
py
Accepted
18
3060
106
N,L= map(int,input().split()) S = [input() for i in range(N)] S.sort() for a in S: print(a,end ="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,527
s221634039
p04044
u346629192
1567229825
Python
Python (3.4.3)
py
Accepted
17
3060
89
N,L = map(int,input().split()) S = [input() for _ in range(N)] S.sort() print("".join(S))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,528
s984020787
p04044
u288500098
1567227914
Python
Python (3.4.3)
py
Accepted
17
3060
150
N,L = map(int, input().split()) S_list = [input() for i in range(N)] S_list.sort() mojiretu = "" for X in S_list: mojiretu += X print(mojiretu)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,529
s631730926
p04044
u770077083
1567220757
Python
Python (3.4.3)
py
Accepted
18
3060
108
n, l = map(int, input().split()) s = [] for i in range(n): s.append(input()) s.sort() print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,530
s248246413
p04044
u113003638
1567206855
Python
Python (3.4.3)
py
Accepted
17
3060
88
n,l = map(int,input().split()) s = [input() for _ in range(n)] print(''.join(sorted(s)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,531
s501361656
p04044
u819710930
1567197422
Python
Python (3.4.3)
py
Accepted
17
3060
84
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,532
s307511392
p04044
u090729464
1567150010
Python
Python (3.4.3)
py
Accepted
18
3060
113
n, l = map(int, input().split()) s = sorted(str(input()) for k in range(n)) p = "" for i in s: p+=i print(p)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,533
s666422099
p04044
u090729464
1567149024
Python
Python (3.4.3)
py
Accepted
17
3060
103
n, l = map(int, input().split()) s = sorted(str(input()) for k in range(n)) end = "".join(s) print(end)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,534
s725648533
p04044
u559103167
1567147682
Python
Python (3.4.3)
py
Accepted
17
3060
89
n,l = map(int, input().split()) s = [input() for i in range(n)] print("".join(sorted(s)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,535
s940522809
p04044
u835482198
1567138780
Python
Python (3.4.3)
py
Accepted
17
3060
85
n, l = map(int, input().split()) print("".join(sorted([input() for _ in range(n)])))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,536
s713621558
p04044
u264265458
1567138307
Python
Python (3.4.3)
py
Accepted
17
3060
81
a,b=map(int,input().split()) print(*(sorted([input() for i in range(a)])),sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,537
s499395880
p04044
u187462782
1567134527
Python
Python (3.4.3)
py
Accepted
17
3060
100
n, l = (int(x) for x in input().split()) s = [input() for i in range(n)] s.sort() print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,538
s085960939
p04044
u405660020
1567112427
Python
Python (3.4.3)
py
Accepted
18
3060
90
n,l = map(int,input().split()) s = sorted([input() for _ in range(n)]) print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,539
s437095885
p04044
u790710233
1567110807
Python
Python (3.4.3)
py
Accepted
17
3060
89
n, l = map(int, input().split()) s = sorted(input() for _ in range(n)) print(*s, sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,540
s481076754
p04044
u934529721
1567103200
Python
Python (3.4.3)
py
Accepted
17
3060
93
N, L = map(int,input().split()) a = [input() for x in range(N)] a.sort() print(''.join(a))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,541
s036201154
p04044
u910756197
1567089139
Python
Python (3.4.3)
py
Accepted
18
3060
107
n, l = map(int, input().split()) s = [""] * n for i in range(n): s[i] = input() print("".join(sorted(s)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,542
s423115427
p04044
u874303957
1567046408
Python
Python (3.4.3)
py
Accepted
17
3060
106
NL = list(map(int, input().split())) ss = [input() for i in range(NL[0])] ss.sort() print(''.join(ss))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,543
s391696763
p04044
u920438243
1567027433
Python
Python (3.4.3)
py
Accepted
17
3060
151
num,long = map(int,input().split()) lines = [input() for i in range(num)] lines.sort() answer = "" for line in lines: answer += line print(answer)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,544
s303528895
p04044
u455533363
1567026439
Python
Python (3.4.3)
py
Accepted
17
3060
107
n,l = map(int,input().split()) a=[] for i in range(n): a.append(input()) a=sorted(a) print("".join(a))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,545
s577477443
p04044
u739959951
1567023598
Python
Python (3.4.3)
py
Accepted
18
3060
133
n,l=map(int,input().split()) l_str=[] for _ in range(n): a=input() l_str.append(a) l_str.sort() ans=''.join(l_str) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,546
s710852884
p04044
u119655368
1566992955
Python
Python (3.4.3)
py
Accepted
17
3060
98
a,b=map(int,input().split()) mojiretu=''.join(sorted([input() for i in range(a)])) print(mojiretu)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,547
s991788173
p04044
u119655368
1566992779
Python
Python (3.4.3)
py
Accepted
17
3060
174
a,b=map(int,input().split()) str_list=[input() for i in range(a)] maped_list=str_list.sort() maped_list = map(str, str_list) mojiretu = ''.join(maped_list) print(mojiretu)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,548
s905720185
p04044
u033606236
1566972072
Python
Python (3.4.3)
py
Accepted
17
3060
92
n, l= map(int,input().split()) ary = sorted([input() for i in range(n)]) print("".join(ary))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,549
s125767319
p04044
u033606236
1566971880
Python
Python (3.4.3)
py
Accepted
17
3060
129
n, l= map(int,input().split()) ary = [0 for i in range(n)] for i in range(n): ary[i] = input() ary.sort() print("".join(ary))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,550
s132713014
p04044
u331672674
1566872512
Python
Python (3.4.3)
py
Accepted
18
3060
158
# -*- coding: utf-8 -*- n, l = map(int, input().split()) strings = [] for i in range(n): strings.append(input()) strings.sort() print("".join(strings))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,551
s221214756
p04044
u045408189
1566865489
Python
Python (3.4.3)
py
Accepted
17
3060
83
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,552
s136886220
p04044
u477216059
1566863364
Python
Python (3.4.3)
py
Accepted
17
3060
160
if __name__ == "__main__": n, l = map(int, input().split()) sl = [] for _ in range(n): sl.append(input()) print("".join(sorted(sl)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,553
s589185103
p04044
u074338678
1566860460
Python
Python (3.4.3)
py
Accepted
17
3060
91
n, l = map(int, input().split()) s = sorted([input() for i in range(n)]) print(*s, sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,554
s653386900
p04044
u126227204
1566856567
Python
Python (3.4.3)
py
Accepted
17
3060
99
n, l = list(map(int, input().split())) s = [input() for i in range(n)] s.sort() print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,555
s830177267
p04044
u881816188
1566849014
Python
Python (3.4.3)
py
Accepted
17
3060
179
n,l=map(int,input().split()) s=[str(input()) for _ in range(n)] sort_s=sorted(s) #'間に挿入する文字列'.join([連結したい文字列のリスト]) print(''.join(sort_s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,556
s185900122
p04044
u164261323
1566842318
Python
Python (3.4.3)
py
Accepted
17
3060
89
N,L = map(int,input().split()) S = sorted([input() for i in range(N)]) print(*S,sep = "")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,557
s089221440
p04044
u478296955
1566820971
Python
Python (3.4.3)
py
Accepted
17
3060
84
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,558
s102614320
p04044
u989345508
1566786556
Python
Python (3.4.3)
py
Accepted
17
3060
94
n,l=input().split() n,l=int(n),int(l) s=sorted([input() for i in range(n)]) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,559
s675658000
p04044
u756696693
1566769257
Python
Python (3.4.3)
py
Accepted
17
3060
84
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,560
s026951513
p04044
u259334183
1566748697
Python
Python (3.4.3)
py
Accepted
17
3060
127
n,l=map(int,input().split()) a=[] b='' for k in range(n): a.append(input()) a.sort() for i in range(n): b+=a[i] print(b)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,561
s941887092
p04044
u987170100
1566745794
Python
Python (3.4.3)
py
Accepted
18
3060
94
N, L = map(int, input().split()) lst = sorted([input() for _ in range(N)]) print(''.join(lst))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,562
s726976411
p04044
u617515020
1566731648
Python
Python (3.4.3)
py
Accepted
17
3060
104
N,L = map(int,input().split()) s = [] for i in range(N): s.append(input()) s.sort() print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,563
s246675547
p04044
u257541375
1566711100
Python
Python (3.4.3)
py
Accepted
17
3060
132
n,l = [int(i) for i in input().split()] array=[] for i in range(n): array.append(input()) array.sort() print("".join(array))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,564
s182835975
p04044
u664776076
1566707935
Python
Python (3.4.3)
py
Accepted
20
3060
83
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,565
s355681053
p04044
u664776076
1566707907
Python
Python (3.4.3)
py
Accepted
17
3060
83
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,566
s118887438
p04044
u902024288
1566706836
Python
Python (3.4.3)
py
Accepted
17
3060
85
n,l = map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,567
s248332531
p04044
u732963817
1566672508
Python
Python (3.4.3)
py
Accepted
17
3060
90
N, L = map(int, input().split()) S = [input() for _ in range(N)] print("".join(sorted(S)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,568
s334070665
p04044
u717626627
1566662241
Python
Python (3.4.3)
py
Accepted
17
3060
112
a,b = map(int, input().split()) list = [str(input()) for i in range(a)] print(''.join(map(str, sorted(list))))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,569
s121624304
p04044
u251515715
1566657507
Python
Python (3.4.3)
py
Accepted
17
3060
105
n,m=map(int,input().split()) a=sorted([input() for i in range(n)]) ans='' for i in a: ans+=i print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,570
s990521359
p04044
u134712256
1566599041
Python
Python (3.4.3)
py
Accepted
17
3060
124
N,L = map(int,input().split()) S = [input() for i in range(N)] S.sort() sum="" for i in range(N): sum+=S[i] print(sum)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,571
s965314440
p04044
u900140292
1566596961
Python
Python (3.4.3)
py
Accepted
18
3060
113
N,L = list(map(int, input().split())) S = [] for i in range(0,N): S.append(input()) print("".join(sorted(S)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,572
s273773703
p04044
u169657264
1566594577
Python
Python (3.4.3)
py
Accepted
18
3060
104
n, l = list(map(int, input().split())) s = [input() for i in range(n)] s.sort() s = "".join(s) print(s)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,573
s245939638
p04044
u784341473
1566528859
Python
Python (3.4.3)
py
Accepted
17
3064
72
n=int(input().split()[0]) print(''.join(sorted([input()for _ in[0]*n])))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,574
s067537699
p04044
u201082459
1566524118
Python
Python (3.4.3)
py
Accepted
17
3060
100
n,l = map(int,input().split()) x = [str(input()) for _ in range(n)] x.sort() a = ''.join(x) print(a)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,575
s397582216
p04044
u201082459
1566524040
Python
Python (3.4.3)
py
Accepted
18
3060
114
n,l = map(int,input().split()) x = [str(input()) for _ in range(n)] x.sort() a = ' ' for i in x: a += i print(a)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,576
s259217281
p04044
u270144704
1566509369
Python
Python (3.4.3)
py
Accepted
17
3060
141
s=input() list=[] num=s.split(' ')[0] for i in range(int(num)): list.append(input()) new_list=sorted(list) print(''.join(new_list))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,577
s350544948
p04044
u873973257
1566482852
Python
Python (3.4.3)
py
Accepted
17
3060
121
N, L = [int(y) for y in input().split(' ')] arr = sorted([input() for x in range(N)], reverse=False) print(''.join(arr))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,578
s266037223
p04044
u810978770
1566451258
Python
Python (3.4.3)
py
Accepted
17
3060
92
n , l = map(int , input().split()) s = sorted([input() for _ in range(n)]) print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,579
s911304300
p04044
u642120132
1566447296
Python
Python (3.4.3)
py
Accepted
20
3060
90
n, l = map(int, input().split()) s = sorted([input() for i in range(n)]) print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,580
s897793852
p04044
u410118019
1566436416
Python
Python (3.4.3)
py
Accepted
17
3060
82
n,l = map(int,input().split()) print(''.join(sorted([input() for i in range(n)])))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,581
s477998514
p04044
u928385607
1566435808
Python
Python (3.4.3)
py
Accepted
17
3060
132
nl = input().split() n = int(nl[0]) l = int(nl[1]) s = [] for i in range(n): s.append(input()) s = ''.join(sorted(s)) print(s)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,582
s334474744
p04044
u412481017
1566433174
Python
Python (3.4.3)
py
Accepted
17
3060
119
n,l=map(int,input().split()) result=[] for _ in range(n): result.append(input()) result.sort() print(*result,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,583
s318592377
p04044
u493491792
1566429058
Python
Python (3.4.3)
py
Accepted
18
3060
97
n,l=map(int,input().split()) lista=[input() for i in range(n)] lista.sort() print("".join(lista))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,584
s385558617
p04044
u243572357
1566394821
Python
Python (3.4.3)
py
Accepted
17
3060
94
n, l = map(int, input().split()) lst = [input() for _ in range(n)] print(''.join(sorted(lst)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,585
s083085584
p04044
u762540523
1566360476
Python
Python (3.4.3)
py
Accepted
17
3060
50
print("".join(sorted(open(0).read().split()[2:])))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,586
s279522680
p04044
u097026338
1566359829
Python
Python (3.4.3)
py
Accepted
19
3060
85
N,L=map(int,input().split()) S=sorted([input() for i in range(N)]) print("".join(S))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,587
s539635835
p04044
u626337957
1566353568
Python
Python (3.4.3)
py
Accepted
17
3060
110
N, L = map(int, input().split()) strings = [input() for _ in range(N)] strings.sort() print(''.join(strings))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,588
s369167353
p04044
u753803401
1566351314
Python
Python (3.4.3)
py
Accepted
18
3060
92
n, l = map(int, input().split()) s = [input() for _ in range(n)] s.sort() print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,589
s225987687
p04044
u957167787
1566350127
Python
Python (3.4.3)
py
Accepted
18
3060
211
# 文字列大好きいろはちゃんイージー / Iroha Loves Strings (ABC Edition) n, l = map(int, input().split()) slist = [input() for i in range(n)] slist = sorted(slist) ans = ''.join(slist) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,590
s264500873
p04044
u665367149
1566339625
Python
Python (3.4.3)
py
Accepted
17
3060
93
n, l = map(int, input().split()) lt = sorted([input() for i in range(n)]) print(''.join(lt))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,591
s947926239
p04044
u981931040
1566336993
Python
Python (3.4.3)
py
Accepted
20
3060
91
N ,L = map(int , input().split()) s=sorted([input() for i in range(N)]) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,592
s758341386
p04044
u058850663
1566333085
Python
Python (3.4.3)
py
Accepted
18
3060
168
# -*- coding: utf-8 -*- n, l = map(int, input().split()) a = [] b = '' for i in range(n): a.append(input()) a.sort() for i in range(len(a)): b += a[i] print(b)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,593
s559721136
p04044
u555356625
1566330641
Python
Python (3.4.3)
py
Accepted
17
3060
223
N, L = map(int, input().split()) str = [] # 入力されるデータをすべて格納 for i in range(N): str.append(input()) str.sort() str_sort = str[0] for s in str[1:]: str_sort = str_sort + s print(str_sort)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,594
s765380141
p04044
u527925554
1566327772
Python
Python (3.4.3)
py
Accepted
18
3060
108
N, _ = map(int, input().split()) S = [] for _ in range(N): S.append(input()) print(''.join(sorted(S)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,595
s413977502
p04044
u207241407
1566326450
Python
Python (3.4.3)
py
Accepted
17
3060
122
n, l = map(int,input().split()) s = [] for i in range(n): s.append(input()) s.sort() for i in s: print(i, end="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,596
s465393861
p04044
u069129582
1566321425
Python
Python (3.4.3)
py
Accepted
17
3060
83
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,597
s586714007
p04044
u625963200
1566305846
Python
Python (3.4.3)
py
Accepted
17
3060
85
n,l=map(int,input().split()) s = sorted([input() for i in range(n)]) print(*s,sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,598
s901962236
p04044
u625963200
1566305432
Python
Python (3.4.3)
py
Accepted
17
3060
84
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,599
s308886284
p04044
u131625544
1566272739
Python
Python (3.4.3)
py
Accepted
17
3060
91
N, L = map(int, input().split()) S = [input() for i in range(N)] print(*sorted(S), sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,600
s851070702
p04044
u026678302
1566270845
Python
Python (3.4.3)
py
Accepted
19
3060
158
N,L = map(int,input().split()) data=[] for n in range(int(N)): data.append(input()) iroha="" A=sorted(data) for i in A: iroha+=i print(iroha)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,601
s160336765
p04044
u835482198
1566270812
Python
Python (3.4.3)
py
Accepted
19
3060
150
# https://atcoder.jp/contests/abc042/tasks/abc042_b N, L = map(int, input().split()) s = [input() for _ in range(N)] s = sorted(s) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,602
s098429107
p04044
u957167787
1566251214
Python
Python (3.4.3)
py
Accepted
17
3060
111
N, L = map(int, input().split()) Slist = [input() for i in range(N)] S = sorted(Slist) s = ''.join(S) print(s)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,603
s935861618
p04044
u488934106
1566241633
Python
Python (3.4.3)
py
Accepted
17
3060
99
N,L = map(int, input().split()) List = [input() for i in range(N)] List.sort() print("".join(List))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,604
s906524906
p04044
u771405286
1566229487
Python
Python (3.4.3)
py
Accepted
17
3060
100
N,L = map(int, input().split()) List = [input() for i in range(N)] List.sort() print("".join(List))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,605
s163326682
p04044
u521866787
1566221239
Python
Python (3.4.3)
py
Accepted
18
3060
93
n, l = map(int, input().split()) x = sorted([ input() for i in range(n) ]) print(''.join(x))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,606
s724448676
p04044
u982139831
1566187378
Python
Python (3.4.3)
py
Accepted
18
3060
126
inputted = input().split(" ") N=int(inputted[0]) L=int(inputted[1]) s = [input() for i in range(N)] s.sort() print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,607
s939308163
p04044
u264686117
1566183244
Python
Python (3.4.3)
py
Accepted
18
3060
106
a, b = map(int, input().split()) l = [] for _ in range(a): l.append(input()) print("".join(sorted(l)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,608
s077868611
p04044
u384031061
1566172969
Python
Python (3.4.3)
py
Accepted
18
3060
134
N, L = list(map(int, input().split())) l = list() for i in range(N): s = input() l.append(s) ls = sorted(l) print("".join(ls))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,609
s588653887
p04044
u360116509
1566152881
Python
Python (3.4.3)
py
Accepted
20
3064
113
N, L = map(int, input().split()) ans = [] for _ in range(N): ans.append(input()) print(''.join(sorted(ans)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,610
s942761909
p04044
u665038048
1566147900
Python
Python (3.4.3)
py
Accepted
17
3060
107
n, l = map(int, input().split()) s = [] for i in range(n): s.append(input()) s.sort() print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,611
s852641854
p04044
u256868077
1566147448
Python
Python (3.4.3)
py
Accepted
17
3060
137
n,l=map(int,input().split()) s=[] for i in range(n): s.append(input()) s.sort() for j in range(n-1): print(s[j],end="") print(s[n-1])
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,612
s833142734
p04044
u492447501
1566145096
Python
Python (3.4.3)
py
Accepted
17
3060
88
n, l = map(int, input().split()) s=sorted([input() for i in range(n)]) print(*s,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,613
s853887270
p04044
u628018347
1566142011
Python
Python (3.4.3)
py
Accepted
17
3060
118
num_list = list(map(int, input().split())) S = [input() for i in range(num_list[0])] S2 = sorted(S) print(*S2, sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,614
s922289256
p04044
u088063513
1566140048
Python
Python (3.4.3)
py
Accepted
17
3060
299
input_first = input().split() N = int(input_first[0]) L = int(input_first[1]) list_input = [] for i in range(N): list_input.append(input()) sorted_list_input = sorted(list_input) #print(list_input) #print(sorted(list_input)) for j in range(N): print(sorted_list_input[j], end="") print("")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,615
s335364337
p04044
u628018347
1566105588
Python
Python (3.4.3)
py
Accepted
17
3060
83
n,l=map(int,input().split()) S=[input() for i in range(n)] print(*sorted(S),sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,616