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
s133660042
p04044
u953753178
1569205999
Python
Python (3.4.3)
py
Accepted
17
3060
183
N, L = list(map(int, input().split())) input_str_list = [] for input_str_index in range(N): input_str_list.append(input()) input_str_list.sort() print(''.join(input_str_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,417
s466685623
p04044
u953753178
1569205952
Python
Python (3.4.3)
py
Accepted
17
3060
177
N, L = map(int, input().split()) input_str_list = [] for input_str_index in range(N): input_str_list.append(input()) input_str_list.sort() print(''.join(input_str_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,418
s602522408
p04044
u354411673
1569172543
Python
Python (3.4.3)
py
Accepted
18
3060
111
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,419
s617774557
p04044
u661980786
1569163692
Python
Python (3.4.3)
py
Accepted
17
3060
100
n,l = map(int,input().split()) dic_l = [input() for i in range(1,n+1)] print("".join(sorted(dic_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,420
s875636285
p04044
u347640436
1569132890
Python
Python (3.4.3)
py
Accepted
17
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,421
s861155044
p04044
u867848444
1569130293
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,422
s033451935
p04044
u844503366
1569122135
Python
Python (3.4.3)
py
Accepted
17
3060
213
N, L = map(int, input().split()) moji_list = [] for i in range(N): moji = input() moji_list.append(moji) moji_sort = sorted(moji_list) #print(moji_sort) ans = "" for i in moji_sort: 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,423
s472330167
p04044
u948522631
1569030088
Python
Python (3.4.3)
py
Accepted
18
3060
113
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,424
s072534382
p04044
u296518383
1569027015
Python
Python (3.4.3)
py
Accepted
17
3060
85
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,425
s201680683
p04044
u420522278
1569000355
Python
Python (3.4.3)
py
Accepted
18
3060
111
n,l = map(int, input().split()) s = [] for i in range(0,n): s.append(input()) 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,426
s793335189
p04044
u924374652
1568945084
Python
Python (3.4.3)
py
Accepted
17
3060
170
n, l = map(int, input().split(" ")) list_s = [] for _ in range(n): list_s.append(input()) list_s.sort() result = "" for one_s in list_s: result += one_s print(result)
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,427
s525431893
p04044
u141786930
1568944697
Python
Python (3.4.3)
py
Accepted
17
3060
113
n, l = map(int, input().split()) s = list() for _ 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,428
s402517299
p04044
u925567828
1568924871
Python
Python (3.4.3)
py
Accepted
17
3060
141
n,l =map(int, input().split()) s = [0]*n ans ='' for i in range(n): s[i] = input() s.sort() for i in range(n): ans +=s[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,429
s666433072
p04044
u404794295
1568914461
Python
Python (3.4.3)
py
Accepted
18
3064
182
input_n=input().split(" ") N=int(input_n[0]) L=int(input_n[1]) say=[] for i in range(N): say.append(input()) say.sort() state="" for i in range(N): state+=say[i] print(state)
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,430
s866430407
p04044
u396495667
1568907272
Python
Python (3.4.3)
py
Accepted
17
3060
114
n,l = map(int,input().split()) ss =[] for i in range(n): s = input() ss.append(s) 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,431
s903545237
p04044
u062484507
1568905900
Python
Python (3.4.3)
py
Accepted
17
3060
196
N, L = map(int, input().split()) S = [input() for _ in range(N)] S.sort() print("".join(S)) # 最速 # n, _ = map(int, input().split()) # a = sorted([input() for _ in [0]*n]) # print(*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,432
s290402330
p04044
u044632922
1568857202
Python
Python (3.4.3)
py
Accepted
17
3060
86
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,433
s270107076
p04044
u090267744
1568840304
Python
Python (3.4.3)
py
Accepted
17
3060
112
n,l=map(int,input().split( )) s=[] for i 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,434
s909420491
p04044
u156207148
1568828670
Python
Python (3.4.3)
py
Accepted
18
3060
125
n, l = map(int, input().split()) list = [] for i in range(n): list.append(input()) list.sort() s = ''.join(list) 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,435
s944663573
p04044
u670180528
1568771933
Python
Python (3.4.3)
py
Accepted
17
3060
67
n,l=input().split();print("".join(sorted(eval("input(),"*int(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,436
s509248433
p04044
u608355135
1568736627
Python
Python (3.4.3)
py
Accepted
17
3060
151
n,l = map(int,input().split()) i = 0 list = [] for i in range(n): list.append(input()) list.sort() ans = '' for x in list: ans += x 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,437
s472910556
p04044
u719840207
1568708558
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,438
s489943425
p04044
u460737328
1568682281
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,439
s310808435
p04044
u354916249
1568671262
Python
Python (3.4.3)
py
Accepted
17
3060
166
N, L = map(int, input().split()) S = [] for _ in range(N): temp = input() S.append(temp) S.sort() ans = '' for i in range(N): ans += S[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,440
s219378655
p04044
u178249601
1568663061
Python
Python (3.4.3)
py
Accepted
17
3060
210
N, L = (int(x) for x in input().split()) S = ['' for i in range(N)] for i in range(N): S[i] = input() else: S.sort() ans = '' for i in range(N): ans += S[i] else: 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,441
s853085198
p04044
u152638361
1568642652
Python
Python (3.4.3)
py
Accepted
18
3060
89
N, L =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,442
s901532013
p04044
u143509139
1568635207
Python
Python (3.4.3)
py
Accepted
17
3060
126
n, l = map(int, input().split()) s = list(input() for _ in range(n)) s.sort() for i in range(n): print(s[i], 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,443
s030646505
p04044
u092244748
1568555018
Python
Python (3.4.3)
py
Accepted
17
3060
124
n, l = map(int, input().split()) array = list(map(str, [input() for i in range(n)])) ans = ''.join(sorted(array)) 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,444
s552621416
p04044
u142693157
1568514158
Python
Python (3.4.3)
py
Accepted
17
3060
227
n, l = map(int, input().split()) s = [] def list_to_str(input_list): string = "" for i in input_list: string += i return string for i in range(n): s.append(str(input())) print(list_to_str(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,445
s065403572
p04044
u114933382
1568510874
Python
Python (3.4.3)
py
Accepted
18
3060
139
N,L =[int(i) for i in input().split()] data = [] for i in range(N): data.append(input()) data.sort() for i in data: 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,446
s130876436
p04044
u063073794
1568509904
Python
Python (3.4.3)
py
Accepted
18
3060
126
n, l = map(int,input().split()) s = [] for i in range(n): s.append(input()) #print(s) s.sort() #print(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,447
s599526693
p04044
u631299617
1568506311
Python
Python (3.4.3)
py
Accepted
17
3060
101
n,l=map(int,input().split()) s=[] for c 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,448
s089275894
p04044
u580093517
1568506044
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("".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,449
s731220154
p04044
u575560095
1568486447
Python
Python (3.4.3)
py
Accepted
18
3060
126
l=[] a='' N,L=map(int,input().split()) for i in range(N): l.append(input()) l.sort() for i in range(N): a += l[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,450
s538084057
p04044
u760767494
1568477599
Python
Python (3.4.3)
py
Accepted
17
3060
125
l=[] a='' N,L=map(int,input().split()) for i in range(N): l.append(input()) l.sort() for i in range(N): a += l[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,451
s313128038
p04044
u053856575
1568473458
Python
Python (3.4.3)
py
Accepted
17
3060
121
n,l=map(int,input().split()) s=[input()for _ in range(n)] s.sort() for i in range(n): print(s[i],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,452
s656587181
p04044
u780354103
1568426604
Python
Python (3.4.3)
py
Accepted
18
3060
89
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,453
s266336271
p04044
u252828980
1568342274
Python
Python (3.4.3)
py
Accepted
17
3060
108
n,m= map(int,input().split()) li = [] for i in range(n): li.append(input()) li.sort() 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,454
s727772974
p04044
u556589653
1568320016
Python
Python (3.4.3)
py
Accepted
17
3060
144
N,L = map(int,input().split()) S = [] ans = "" for i in range(N): S.append(input()) S.sort() for i in range(len(S)): ans += S[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,455
s903575889
p04044
u502304480
1568226944
Python
Python (3.4.3)
py
Accepted
17
3060
98
n, l = 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,456
s232560636
p04044
u511379665
1568224722
Python
Python (3.4.3)
py
Accepted
18
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,457
s935716618
p04044
u723590269
1568220170
Python
Python (3.4.3)
py
Accepted
17
3060
134
n,l=map(int,input().split()) s =[] for i in range(n): s.append(input()) s.sort() out = '' for i in s: out += i print(out)
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,458
s359592581
p04044
u788703383
1568218810
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("".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,459
s689409784
p04044
u214122599
1568215706
Python
Python (3.4.3)
py
Accepted
17
3060
165
n,l =map(int, input().split()) words = [] for i in range(n): words.append(input()) words_sorted = sorted(words) new_words = "".join(words_sorted) print(new_words)
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,460
s619215691
p04044
u258073778
1568213689
Python
Python (3.4.3)
py
Accepted
17
3060
162
N,L = map(int, input().split()) Sn = [input() for _ in range(N)] ans = Sn.pop(Sn.index(min(Sn))) for i in range(N-1): ans+=Sn.pop(Sn.index(min(Sn))) 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,461
s176095663
p04044
u304251553
1568206343
Python
Python (3.4.3)
py
Accepted
17
3060
209
#coding: utf-8 n = list(map(int, input().split())) s_list = [] for i in range(0, n[0]): s_list.append(input()) s_list = sorted(s_list) s = "" for i in range (0, len(s_list)): s += s_list[i] 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,462
s914537846
p04044
u015187377
1568169796
Python
Python (3.4.3)
py
Accepted
17
3060
87
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,463
s360745229
p04044
u791489811
1568166219
Python
Python (3.4.3)
py
Accepted
17
3060
101
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,464
s629168880
p04044
u469254913
1568153441
Python
Python (3.4.3)
py
Accepted
17
3060
148
N,L = map(int,input().split()) S = [] for i in range(N): S.append(input()) S.sort() res = '' for i in range(N): res += S[i] print(res)
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,465
s169946012
p04044
u799479335
1568146221
Python
Python (3.4.3)
py
Accepted
18
3060
151
N,L = map(int, input().split()) S = [] for i in range(N): S.append(input()) S = sorted(S) ans = '' for i in range(N): ans += S[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,466
s031792120
p04044
u283929013
1568141330
Python
Python (3.4.3)
py
Accepted
18
3060
92
N,L = 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,467
s725845019
p04044
u396495667
1568140071
Python
Python (3.4.3)
py
Accepted
17
3060
108
n,l = map(int,input().split()) s = list(input() for i in range(n)) c = sorted(s) ans =''.join(c) 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,468
s774597585
p04044
u143821940
1568102701
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,469
s708129210
p04044
u699699071
1568076005
Python
Python (3.4.3)
py
Accepted
17
3060
132
N,L = map(int,input().split()) jisho=[] for i in range(N): array = input() jisho.append(array) print("".join(sorted(jisho)))
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,470
s842729996
p04044
u414558682
1568072508
Python
Python (3.4.3)
py
Accepted
17
3060
198
N, L = map(int, input().split()) # print(N) # print(L) lst = [] for i in range(N): # print(i) S = input() # print(S) lst.append(S) lst.sort() # print(lst) 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,471
s946874548
p04044
u862757671
1568067389
Python
Python (3.4.3)
py
Accepted
18
3060
84
n, l = map(int, input().split()) print(''.join(sorted([input() for s 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,472
s866762599
p04044
u977349332
1568062921
Python
Python (3.4.3)
py
Accepted
17
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,473
s564988976
p04044
u636822224
1568055999
Python
Python (3.4.3)
py
Accepted
17
3060
88
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,474
s358474381
p04044
u580362735
1568047617
Python
Python (3.4.3)
py
Accepted
17
3060
88
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,475
s139782892
p04044
u322354465
1568039087
Python
Python (3.4.3)
py
Accepted
17
3060
113
n, l = map(int, input().split()) s = list() for _ 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,476
s618383027
p04044
u595716769
1568013274
Python
Python (3.4.3)
py
Accepted
17
3060
148
N, L = map(int, input().split()) Li = [input() for i in range(N)] s = "" for i in range(N): temp = min(Li) Li.remove(temp) s += temp 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,477
s725110268
p04044
u635540732
1568007836
Python
Python (3.4.3)
py
Accepted
17
3060
99
n,l=map(int,input().split()) a=[] for _ in range(n): a.append(input()) 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,478
s578187555
p04044
u597455618
1567994420
Python
Python (3.4.3)
py
Accepted
17
3060
90
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,479
s793613681
p04044
u572142121
1567982187
Python
Python (3.4.3)
py
Accepted
17
3060
89
N,L=map(int,input().split()) List=sorted([input() for i in range(N)]) print(*List,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,480
s985127546
p04044
u640603056
1567981558
Python
Python (3.4.3)
py
Accepted
20
3316
441
#インポート import sys #入力用 def ILI(): return list(map(int, sys.stdin.readline().rstrip().split())) def ISI(): return map(int, sys.stdin.readline().rstrip().split()) def II(): return int(sys.stdin.readline().rstrip()) def ISS(): return sys.stdin.readline().rstrip().split() def IS(): return sys.stdin.readline().rstrip() 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,481
s584472163
p04044
u418156761
1567974229
Python
Python (3.4.3)
py
Accepted
18
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,482
s009600274
p04044
u617203831
1567970993
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,483
s744572345
p04044
u060455496
1567949980
Python
Python (3.4.3)
py
Accepted
17
3060
107
n,l=map(int,input().split()) ans =[] for _ in range(n): ans += [input()] ans.sort() print(''.join(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,484
s115068638
p04044
u597017430
1567943504
Python
Python (3.4.3)
py
Accepted
18
3060
92
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,485
s232165758
p04044
u597017430
1567943218
Python
Python (3.4.3)
py
Accepted
18
3060
130
N, L = map(int, input().split()) a = [0] * N for i in range(N): a[i] = input() a.sort() for i in range(N): print(a[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,486
s213175636
p04044
u066253157
1567922043
Python
Python (3.4.3)
py
Accepted
17
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,487
s593456261
p04044
u692690314
1567893030
Python
Python (3.4.3)
py
Accepted
17
3060
91
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,488
s005844232
p04044
u990896548
1567886348
Python
Python (3.4.3)
py
Accepted
17
3060
200
if __name__ == '__main__': N, L = map(int, input().split()) S = [] for i in range(N): S.append(input()) S.sort() t = "" for S_i in S: t += S_i print(t)
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,489
s128035936
p04044
u041641933
1567883618
Python
Python (3.4.3)
py
Accepted
18
3060
140
N, L = map(int, input().split(" ")) words = [] for i in range(N): word = input() words.append(word) words.sort() print("".join(words))
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,490
s199183793
p04044
u721425712
1567872536
Python
Python (3.4.3)
py
Accepted
18
3060
160
N, L = map(int, input().split()) S = [] for i in range(N): s = input() S.append(s) S.sort() ans = '' for j in range(N): ans += S[j] 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,491
s149101037
p04044
u869919400
1567869119
Python
Python (3.4.3)
py
Accepted
17
3060
92
n, l = map(int, input().split()) ss = [input() for _ in range(n)] print(''.join(sorted(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,492
s661553363
p04044
u496812085
1567861500
Python
Python (3.4.3)
py
Accepted
18
3060
115
n, l = map(int,input().split()) ans = [] for i in range(n): ans.append(input()) ans.sort() print(''.join(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,493
s671118348
p04044
u319690708
1567843130
Python
Python (3.4.3)
py
Accepted
18
3060
214
n = input().split() num = [int(z) for z in n ] f = num[0] s = num[1] words = [] for i in range(f): word = input() words.append(word) s_words = sorted(words) j_s_words = "".join(s_words) print(j_s_words)
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,494
s318787584
p04044
u976225138
1567830578
Python
Python (3.4.3)
py
Accepted
17
3060
84
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,495
s782403750
p04044
u592248346
1567822164
Python
Python (3.4.3)
py
Accepted
17
3060
104
n,l = map(int,input().split()) m = [] for i in range(n): m.append(input()) m.sort() print(*m,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,496
s393194313
p04044
u474925961
1567796168
Python
Python (3.4.3)
py
Accepted
17
3060
169
import sys if sys.platform =='ios': sys.stdin=open('input_file.txt') N,L=map(int,input().split()) list=sorted([input() for i in range(N)]) print(*list,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,497
s361604381
p04044
u557136512
1567794887
Python
Python (3.4.3)
py
Accepted
17
3060
140
N, L = map(int, input().split()) words = [] for i in range(N): words.append(input()) words.sort() for word in words: print(word, 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,498
s519000363
p04044
u177411511
1567791627
Python
Python (3.4.3)
py
Accepted
17
3060
212
import sys stdin = sys.stdin ni = lambda: int(ns()) na = lambda: list(map(int, stdin.readline().split())) ns = lambda: stdin.readline() n, l = na() li = [input() for i in range(n)] li.sort() 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,499
s709958233
p04044
u077898957
1567777965
Python
Python (3.4.3)
py
Accepted
17
3060
135
n,l = map(int,input().split()) S = [] ans = '' for i in range(n): S += [input()] T = sorted(S) for i in T: 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,500
s366707274
p04044
u820052258
1567731847
Python
Python (3.4.3)
py
Accepted
18
3060
159
m = list(map(int,input().split())) s = [list(map(str,input().split())) for i in range(m[0])] a='' s.sort() for i in range(m[0]): a=a+''.join(s[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,501
s524451964
p04044
u506086925
1567723584
Python
Python (3.4.3)
py
Accepted
18
3060
132
N, L = map(int, input().split()) S = [] for _ in range(N): s = input() S.append(s) S.sort() for s in S: print(s, 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,502
s553738062
p04044
u726979570
1567716369
Python
Python (3.4.3)
py
Accepted
17
3060
187
a_list=[] N, L = map(int, input().split()) for a in range (N): a_list.append(input()) new_list=sorted(a_list) string="" for word in new_list: string+=str(word) print(string)
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,503
s979594216
p04044
u726979570
1567716312
Python
Python (3.4.3)
py
Accepted
17
3060
131
a_list=[] N, L = map(int, input().split()) for a in range (N): a_list.append(input()) a_list.sort() print(''.join(a_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,504
s959891747
p04044
u692690314
1567699077
Python
Python (3.4.3)
py
Accepted
18
3060
107
N, L = map(int, input().split()) S = [] for _ 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,505
s931180941
p04044
u703890795
1567656416
Python
Python (3.4.3)
py
Accepted
17
3060
129
N, L = map(int, input().split()) S = [] for i in range(N): S.append(input()) S = sorted(S) l = "" for s in S: l += s print(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,506
s930061511
p04044
u143903328
1567648973
Python
Python (3.4.3)
py
Accepted
18
3060
112
n,l = map(int,input().split()) s = [] for i in range(n): s.append(input()) s = sorted(s) 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,507
s624541889
p04044
u587213169
1567646979
Python
Python (3.4.3)
py
Accepted
17
3060
109
n, l = map(int, input().split()) S=list(input() for _ in range(n)) S.sort() for j in S: print(j, 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,508
s661336090
p04044
u396391104
1567630904
Python
Python (3.4.3)
py
Accepted
17
3060
102
n,l = map(int,input().split()) s = [input() for i in range(n)] s.sort() for c in s: print(c, 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,509
s086701003
p04044
u378328623
1567618483
Python
Python (3.4.3)
py
Accepted
17
3060
125
N, L = map(int, input().split()) Slist = [] for i in range(N): Slist.append(input()) s = sorted(Slist) 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,510
s716039865
p04044
u395202850
1567614458
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,511
s867060441
p04044
u395202850
1567614389
Python
Python (3.4.3)
py
Accepted
18
3060
99
n, l = map(int, input().split()) sList = [input() for _ in range(n)] print("".join(sorted(sList)))
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,512
s539901723
p04044
u539018546
1567611725
Python
Python (3.4.3)
py
Accepted
17
3060
135
N,L = map(int,input().split()) S = [] for i in range(N): S.append(input()) S=sorted(S) SS="" for j in range(N): SS+=S[j] print(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,513
s643326762
p04044
u788023488
1567597012
Python
Python (3.4.3)
py
Accepted
17
3060
120
n,l = map(int, input().split()) List=[input() for i in range(n)] List.sort() for i in range(n): print(List[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,514
s513912246
p04044
u733738237
1567544017
Python
Python (3.4.3)
py
Accepted
17
3060
95
N,L=[int(x) for x in input().split()] a =[input() for i 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,515
s730910594
p04044
u872056745
1567534657
Python
Python (3.4.3)
py
Accepted
17
3060
116
n, l = map(int, input().split()) str = [] for i in range(n): str.append(input()) str.sort() print(''.join(str))
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,516