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
s373605571
p04044
u102461423
1560318254
Python
Python (3.4.3)
py
Accepted
17
3060
138
# 長さが同じなので単純 N,L = map(int,input().split()) S = [input() for _ in range(N)] S.sort() answer = ''.join(S) 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,917
s184852331
p04044
u474423089
1560307435
Python
Python (3.4.3)
py
Accepted
17
3060
161
n,l=map(int,input().split(" ")) word=[] for i in range(n): w =input() word.append(w) word_sorted = sorted(word) for i in word_sorted: 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,918
s846617218
p04044
u564906058
1560227634
Python
Python (3.4.3)
py
Accepted
17
3060
133
n,l = map(int,input().split()) s = [input() for i in range(n)] s.sort() letter = "" for i in range(n): letter += s[i] print(letter)
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,919
s338398903
p04044
u822738981
1560218504
Python
Python (3.4.3)
py
Accepted
17
3060
153
# -*- coding: utf-8 -*- n, l = map(int, input().split()) s = [input() for i in range(n)] s.sort() for i in range(n): print(s[i], sep='', 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,920
s783367937
p04044
u494514222
1560199236
Python
Python (3.4.3)
py
Accepted
17
3060
119
N, L = map(int, input().split()) S = [input() for _ in range(N)] S.sort() ans = "" for s in S: ans+=s 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,921
s215425431
p04044
u874549552
1560183749
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,922
s882051189
p04044
u584529823
1560104783
Python
Python (3.4.3)
py
Accepted
17
3060
97
N, L = map(int, input().split()) strs = [input() for _ in range(N)] print("".join(sorted(strs)))
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,923
s340113957
p04044
u619785253
1560091719
Python
Python (3.4.3)
py
Accepted
17
3060
148
nk = list(map(int,input().split(' '))) doc = [] for i in range(0,nk[0]): #doc[i] = input() doc.append(input()) doc.sort() print(''.join(doc))
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,924
s526462295
p04044
u881100099
1560056448
Python
Python (3.4.3)
py
Accepted
18
3060
120
N,L=(int(i) for i in input().split()) S=[input() for i in range(N)] S.sort() X="" for i in range(N): X=X+S[i] print(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,925
s752798378
p04044
u474423089
1560052082
Python
Python (3.4.3)
py
Accepted
17
3060
229
def main(): n,l=map(int,input().split(' ')) l_list=[] for i in range(n): l_list.append(input()) sorted_l = sorted(l_list) for i in sorted_l: print(i,end='') if __name__=='__main__': 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,926
s593432849
p04044
u203597140
1560041205
Python
Python (3.4.3)
py
Accepted
17
3060
115
n, l = [int(v) for v in input().split()] s_s = [input() for i in range(n)] s_s.sort() ans = "".join(s_s) 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,927
s629419542
p04044
u400620139
1560019148
Python
Python (3.4.3)
py
Accepted
17
3060
157
n, l = list(map(int, input().split())) arr = list() for i in range(0, n): arr.append(input()) arr.sort() for str in arr: print(str, 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,928
s279845766
p04044
u637918426
1559882664
Python
Python (3.4.3)
py
Accepted
17
3060
113
N, L = map(int, input().split()) word = [input() for i in range(N)] print(''.join(sorted(word, reverse=False)))
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,929
s633206032
p04044
u365364616
1559852352
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,930
s278748943
p04044
u136811344
1559840270
Python
Python (3.4.3)
py
Accepted
17
3060
143
N, L = map(int, input().split()) S = [] for i in range(N): s_i = input().strip() S.append(s_i) S = sorted(S) print("".join([x for x in 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,931
s974939289
p04044
u374531474
1559796517
Python
Python (3.4.3)
py
Accepted
17
3060
93
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,932
s306845967
p04044
u559126797
1559774247
Python
Python (3.4.3)
py
Accepted
18
3060
127
N,L=map(int,input().split()) S=[input() for _ in range(N)] S.sort() answer="" for i in range(N): answer+=S[i] 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,933
s829564653
p04044
u694810977
1559763239
Python
Python (3.4.3)
py
Accepted
17
3060
149
N, L = map(int, input().split()) lists = [] for i in range(N): S = str(input()) lists.append(S) lists.sort() ans = "".join(lists) 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,934
s531342910
p04044
u476562059
1559755985
Python
Python (3.4.3)
py
Accepted
17
3060
109
n, l = map(int, input().split()) a = [] for x 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,935
s967666367
p04044
u476562059
1559755883
Python
Python (3.4.3)
py
Accepted
17
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,936
s234968419
p04044
u115284827
1559744720
Python
Python (3.4.3)
py
Accepted
17
3060
120
N, L = map(int, input().split()) S = [''.join([i for i in input().split()]) 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,937
s772209987
p04044
u864453204
1559673981
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,938
s204646218
p04044
u297651868
1559663395
Python
Python (3.4.3)
py
Accepted
17
3060
140
int = list(map(int, input().split())) li = [input() for i in range(int[0])] li = sorted(li) for i in range(int[0]): print(li[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,939
s491056276
p04044
u846113428
1559618271
Python
Python (3.4.3)
py
Accepted
23
3572
207
from functools import reduce n, l = map(lambda x: int(x), input().split(' ')) s = [] for i in range(n): s.append(input()) def concat_str(a, b): return a + b s.sort() print(reduce(concat_str, 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,940
s622953903
p04044
u564060397
1559590920
Python
Python (3.4.3)
py
Accepted
17
3060
111
a,b=map(int,input().split()) List=[] for i in range(a): List.append(input()) print("".join(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,941
s455963811
p04044
u353652911
1559583134
Python
Python (3.4.3)
py
Accepted
17
3060
123
l,m=map(int,input().split()) word=[] for i in range(l): word.append(input()) sw=sorted(word) print("".join(sw))
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,942
s680376316
p04044
u498620941
1559538398
Python
Python (3.4.3)
py
Accepted
17
3060
126
N,L= map(int,input().split()) text = [] for i in range(N): text.append(input()) text.sort() ans = "".join(text) 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,943
s670403501
p04044
u305052967
1559515812
Python
Python (3.4.3)
py
Accepted
17
3060
174
N,L = list(map(int, input().split())) list = [] for n in range(N): list.append(input()) list.sort() literal = "" for n in range(N): literal +=list[n] print(literal)
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,944
s716279800
p04044
u962330718
1559457643
Python
Python (3.4.3)
py
Accepted
18
3060
172
n,l=map(int,input().split()) ans='' words=[] for i in range(n): s=input() words.append(s) words_sort=sorted(words) for i in range(n): ans=ans+words_sort[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,945
s597393743
p04044
u874549552
1559446640
Python
Python (3.4.3)
py
Accepted
17
3060
95
n,l = map(int,input().split()) list = sorted([input() for i in range(n)]) 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,946
s251677546
p04044
u164957173
1559405253
Python
Python (3.4.3)
py
Accepted
18
3060
145
N, L = map(int,input().split()) str_list = [] for i in range(N): str_list.append(input()) str_list.sort() ans = "".join(str_list) 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,947
s779382714
p04044
u911575040
1559268647
Python
Python (3.4.3)
py
Accepted
17
3060
101
N,L=map(int,input().split()) A=[] for i in range(N): A.append(input()) print("".join(sorted(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,948
s731124956
p04044
u238510421
1559264981
Python
Python (3.4.3)
py
Accepted
17
3060
121
N, L = map(int,input().split()) s_list = [] for i in range(N): s_list.append(input()) print("".join(sorted(s_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,949
s895219769
p04044
u483640741
1559258908
Python
Python (3.4.3)
py
Accepted
17
3060
118
n,l=map(int,input().split()) dic=[] for i in range(n): x=input() dic.append(x) print("".join(sorted(dic)))
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,950
s781949191
p04044
u924308178
1559250551
Python
Python (3.4.3)
py
Accepted
17
3060
98
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,951
s736755885
p04044
u134243444
1559223818
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,952
s110255598
p04044
u366959492
1559217142
Python
Python (3.4.3)
py
Accepted
17
3060
87
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,953
s496195113
p04044
u460245024
1559193781
Python
Python (3.4.3)
py
Accepted
17
3060
92
N, _ = map(int, input().split()) S = [input() for _ in range(N)] S.sort() 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,954
s250126275
p04044
u350248178
1559192112
Python
Python (3.4.3)
py
Accepted
17
3060
124
n,l=map(int,input().split()) s=[] for i in range(n): s.append(input()) s.sort() ans="" for i in s: 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,955
s121312396
p04044
u095089755
1559177731
Python
Python (3.4.3)
py
Accepted
17
3060
98
N, L = list(map(int, input().split())) S = [input() for n 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,956
s797717896
p04044
u865741247
1559177495
Python
Python (3.4.3)
py
Accepted
17
3060
131
N,L = list(map(int,input().split(" "))) words = [] for _ in range(N): words.append(input()) 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,957
s043385931
p04044
u977642052
1559175044
Python
Python (3.4.3)
py
Accepted
17
3060
232
def resolve(): N, L = map(int, input().split(' ')) S = [] for x in range(0, N): S.append(input()) S.sort() [ print(S , end='') for S in S] if __name__ == '__main__': resolve()
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,958
s609781656
p04044
u360031743
1559163404
Python
Python (3.4.3)
py
Accepted
17
3060
122
H, W = map(int, input().split()) S = [] for _ in range(H): S.append(input()) sor =S.sort() ans = ''.join(S) 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,959
s571261739
p04044
u063550903
1559156662
Python
Python (3.4.3)
py
Accepted
19
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,960
s954455106
p04044
u399721252
1559112297
Python
Python (3.4.3)
py
Accepted
17
3060
122
n, l = [ int(v) for v in input().split() ] string_list = sorted([ input() for v in range(n) ]) print("".join(string_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,961
s227041375
p04044
u044026875
1559095211
Python
Python (3.4.3)
py
Accepted
17
3060
87
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,962
s278753336
p04044
u761529120
1559094047
Python
Python (3.4.3)
py
Accepted
18
3060
122
N, L = map(int, input().split()) S = [input() for i in range(N)] sort_S = sorted(S) for s in sort_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,963
s040781053
p04044
u167681750
1559088895
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,964
s584886750
p04044
u545368057
1559081835
Python
Python (3.4.3)
py
Accepted
18
3060
154
N, L = map(int,input().split()) Ss = [] for i in range(N): S = input() Ss.append(S) Ss = sorted(Ss) ans = "" for S in Ss: ans += S 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,965
s564760635
p04044
u223646582
1559050640
Python
Python (3.4.3)
py
Accepted
17
3060
102
N,L=map(int, input().split()) l=[] for i in range(N): l.append(input()) print(*sorted(l),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,966
s397541544
p04044
u266874640
1559000989
Python
Python (3.4.3)
py
Accepted
18
3060
153
number,length = map(int,input().split()) string = [input() for i in range(number)] string.sort() for i in range(number): print(string[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,967
s336831995
p04044
u392480256
1558987094
Python
Python (3.4.3)
py
Accepted
17
3060
105
N,L = map(int,input().split()) S = [] for x 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,968
s629043397
p04044
u211160392
1558986399
Python
Python (3.4.3)
py
Accepted
17
3060
123
N,L = map(int,input().split()) S = list(input() for i in range(N)) S.sort() for str in S: print(str,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,969
s104089262
p04044
u856169020
1558961675
Python
Python (3.4.3)
py
Accepted
17
3060
135
N, L = map(int, input().split()) S = [] for i in range(N): S.append(str(input())) S.sort() ans = '' for s in S: ans += s 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,970
s635750857
p04044
u416758623
1558959757
Python
Python (3.4.3)
py
Accepted
17
3060
104
n,l = map(int, input().split()) s = [input() for _ in range(n)] 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,971
s393566474
p04044
u065446124
1558944256
Python
Python (3.4.3)
py
Accepted
17
3060
94
n,l=map(int,input().split()) s=[input() for i in range(n)] s.sort() print("".join(map(str,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,972
s407316249
p04044
u501163846
1558932892
Python
Python (3.4.3)
py
Accepted
17
3060
107
n,l=map(int,input().split()) s=[] for i in range(n): s.append(str(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,973
s116725951
p04044
u606045429
1558929835
Python
Python (3.4.3)
py
Accepted
17
3060
101
N, L = [int(i) for i in 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,974
s973367805
p04044
u723180465
1558902604
Python
Python (3.4.3)
py
Accepted
17
3060
107
n, l = list(map(int, input().split())) ss = sorted([input().strip() for _ in range(n)]) 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,975
s332738543
p04044
u591779169
1558857389
Python
Python (3.4.3)
py
Accepted
17
3060
99
n, l = map(int, input().split()) s = [input() for i in range(n)] sn = "".join(sorted(s)) print(sn)
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,976
s077592120
p04044
u369338402
1558829982
Python
Python (3.4.3)
py
Accepted
17
3060
114
n,l=map(int,input().split()) s=[] t='' for i in range(n): s.append(input()) s.sort() for k in s: t+=k 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,977
s057932816
p04044
u564060397
1558810838
Python
Python (3.4.3)
py
Accepted
17
3060
91
a,b=map(int,input().split()) List=[input() for i in range(a)] print("".join(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,978
s535087853
p04044
u802772880
1558799003
Python
Python (3.4.3)
py
Accepted
17
3060
84
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,979
s319201864
p04044
u104922648
1558755329
Python
Python (3.4.3)
py
Accepted
17
3060
96
n, l = list(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,980
s920587821
p04044
u733736125
1558669137
Python
Python (3.4.3)
py
Accepted
18
3060
195
def f(n, l): ss = [input() for i in range(n)] ss.sort() return ''.join(ss) if __name__ == '__main__': nl = [int(n) for n in input().split(' ')] n = nl[0] l = nl[1] print(f(n, 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,981
s354122140
p04044
u919633157
1558613746
Python
Python (3.4.3)
py
Accepted
17
3060
80
n,_=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,982
s468888974
p04044
u728498511
1558576081
Python
Python (3.4.3)
py
Accepted
17
3060
84
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,983
s511761462
p04044
u765590009
1558480266
Python
Python (3.4.3)
py
Accepted
17
3060
284
# 入力 # スペース区切りの整数の入力(定数) n, l = map(int, input().split()) #Class-B 行ごとの入力(n行) input_list = [] for i in range(n) : a = input() input_list.append(a) # 計算と出力 input_list.sort(reverse=False) print("".join(input_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,984
s269048565
p04044
u129978636
1558409908
Python
Python (3.4.3)
py
Accepted
17
3060
116
n,l=map(int,input().split()) s=sorted([input() for _ in range(n)]) 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,985
s622977652
p04044
u524747996
1558277879
Python
Python (3.4.3)
py
Accepted
17
3060
140
N, L = map(int, input().split()) S = [input() for _ in range(N)] sorted_S = sorted(S) ans='' for s in sorted_S: ans += s 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,986
s195154892
p04044
u391731808
1558273300
Python
Python (3.4.3)
py
Accepted
17
3060
76
n=int(input().split()[0]) S=sorted(input() for _ in [0]*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,987
s048171413
p04044
u569742427
1558225730
Python
Python (3.4.3)
py
Accepted
17
3060
395
N,L=map(int,input().split()) dic={} data=[] for _ in range(N): word=input() data.append(word) data=sorted(data) ans='' for d in data: ans+=d # for _ in range(N): # word=input() # if not word in dic: # dic[word]=1 # else: # dic[word]+=1 # # ans='' # # dic=sorted(dic.items()...
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,988
s074868141
p04044
u569742427
1558225590
Python
Python (3.4.3)
py
Accepted
17
3060
248
N,L=map(int,input().split()) dic={} for _ in range(N): word=input() if not word in dic: dic[word]=1 else: dic[word]+=1 ans='' dic=sorted(dic.items()) for k,v in dic: for _ in range(v): ans+=k 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,989
s828484642
p04044
u129836004
1558218459
Python
Python (3.4.3)
py
Accepted
17
3060
94
N, L = map(int, input().split()) Ss = [input() for _ in range(N)] 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,990
s204940795
p04044
u756518877
1558217232
Python
Python (3.4.3)
py
Accepted
17
3060
230
# -*- coding: utf-8 -*- n,l=map(int,input().split(" ")) #空のリスト alist=[] #文字列の入力、リスト化 for _ in range(n): alist.append(input()) #並び替え alist.sort() #結合 alist2="".join(alist) print(alist2)
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,991
s823572060
p04044
u532966492
1558134852
Python
Python (3.4.3)
py
Accepted
17
3060
108
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,992
s988561314
p04044
u923712635
1558128159
Python
Python (3.4.3)
py
Accepted
17
3060
124
N,L = [int(x) for x in input().split()] S = [input() for _ in range(N)] S.sort() ans = '' for i in S: 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,993
s889347061
p04044
u680004123
1558117585
Python
Python (3.4.3)
py
Accepted
17
3060
90
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,994
s491152531
p04044
u903948194
1558007204
Python
Python (3.4.3)
py
Accepted
17
3060
128
n, l = [int(n) for n in input().split()] words = [] for i in range(n): words.append(input()) print(''.join(sorted(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,995
s991163265
p04044
u570545890
1557949975
Python
Python (3.4.3)
py
Accepted
17
3060
109
import itertools 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,996
s455057829
p04044
u315703650
1557927541
Python
Python (3.4.3)
py
Accepted
17
3060
104
n,l = map(int,input().split()) s = [input() for _ in range(n)] 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,997
s650499940
p04044
u346395915
1557895373
Python
Python (3.4.3)
py
Accepted
17
3060
92
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,998
s063631449
p04044
u346395915
1557894528
Python
Python (3.4.3)
py
Accepted
17
3060
135
n, l = map(int, input().split()) list1 = [] for i in range(n): list1.append(input()) list1.sort() print("".join(list1))
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,999
s519935726
p04044
u933341648
1557892459
Python
Python (3.4.3)
py
Accepted
17
3060
91
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,215,000
s319175367
p04044
u379959788
1557798577
Python
Python (3.4.3)
py
Accepted
17
3060
159
#B問題 N , L = map(int, input().split()) S = [] for i in range(N): S.append(input()) S.sort() ans = "" for k in range(N): ans += S[k] 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,215,001
s732715108
p04044
u504562455
1557773027
Python
Python (3.4.3)
py
Accepted
17
3060
114
n, l = [int(i) for i in input().split()] s = [] for ni 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,215,002
s655423352
p04044
u097121858
1557749817
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,215,003
s237413652
p04044
u061104093
1557740019
Python
Python (3.4.3)
py
Accepted
17
3060
115
n, l = map(int, input().split()) s = list() for i in range(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,215,004
s498166555
p04044
u507116804
1557710938
Python
Python (3.4.3)
py
Accepted
17
3060
119
n,l=map(int,input().split()) k=[] for i in range(n): s=input() k.append(s) x=sorted(k) z="".join(x) print(z)
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,215,005
s368061300
p04044
u534308356
1557699028
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,215,006
s897218057
p04044
u521696407
1557694974
Python
Python (3.4.3)
py
Accepted
17
3060
304
def min_join(strings): """文字を全て結合して、辞書順で最も小さくなる文字を探す。""" strings.sort() return ''.join(strings) def main(): N, L = (int(i) for i in input().split()) strings = [input() for _ in range(N)] print(min_join(strings)) 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,215,007
s338988154
p04044
u416758623
1557692241
Python
Python (3.4.3)
py
Accepted
17
3060
153
n, l = [int(x) for x in input().split()] s = [input() for y in range(n)] total = "" sortS = sorted(s) for i in range(n): total+=sortS[i] print(total)
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,215,008
s558422975
p04044
u565438278
1557577937
Python
Python (3.4.3)
py
Accepted
17
3060
219
N,L = map(int,input().rstrip().split(' ')) WORDS=["" for i in range(N)] for i in range(N): WORDS[i] = input().rstrip() WORDS.sort(key=str,reverse=False) #print(WORDS) for i in range(N): print(WORDS[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,215,009
s262102029
p04044
u993622994
1557526578
Python
Python (3.4.3)
py
Accepted
17
3060
100
n, l = map(int, input().split()) s = [input() for _ in range(n)] ans = sorted(s) print(*ans, 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,215,010
s900598045
p04044
u220345792
1557448555
Python
Python (3.4.3)
py
Accepted
17
3060
105
N, L = map(int, input().split()) l = [] for i in range(N): l.append(input()) l.sort() print("".join(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,215,011
s261002096
p04044
u041196979
1557430762
Python
Python (3.4.3)
py
Accepted
17
3064
91
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,215,012
s226183714
p04044
u278886389
1557409925
Python
Python (3.4.3)
py
Accepted
17
3060
115
N,L = map(int,input().split(" ")) S = [0]*N for i in range(N): S[i] = 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,215,013
s515652592
p04044
u268470352
1557279636
Python
Python (3.4.3)
py
Accepted
18
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,215,014
s146640606
p04044
u150641538
1557257541
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,215,015
s412461389
p04044
u799000757
1557198451
Python
Python (3.4.3)
py
Accepted
17
3060
111
n,l=map(int,input().split()) moji=[] for i in range(n): moji.append(input()) moji.sort() print("".join(moji))
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,215,016