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
s241563223
p04044
u257251421
1582819304
Python
Python (3.4.3)
py
Accepted
17
3060
133
N, L = map(int, input().split()) Li = [] for i in range(N): s = input() Li.append(s) Ls = sorted(Li) S = ''.join(Ls) 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,213,817
s732355730
p04044
u022979415
1582819207
Python
Python (3.4.3)
py
Accepted
17
3060
202
def main(): string_num, length = map(int, input().split()) strings = [input() for _ in range(string_num)] strings.sort() print("".join(strings)) 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,213,818
s859660780
p04044
u161777729
1582696213
Python
Python (3.4.3)
py
Accepted
17
3060
86
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,213,819
s433965333
p04044
u368796742
1582691642
Python
Python (3.4.3)
py
Accepted
17
3060
94
n,l = map(int,input().split()) ans = [input() for i in range(n)] ans.sort() 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,213,820
s536837417
p04044
u768559443
1582690576
Python
Python (3.4.3)
py
Accepted
17
3060
82
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,213,821
s474563081
p04044
u269969976
1582668248
Python
Python (3.4.3)
py
Accepted
17
3060
142
# coding:utf-8 (n,l) = [int(i) for i in input().rstrip().split(" ")] list = sorted([input().rstrip() 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,213,822
s125944189
p04044
u413165887
1582633171
Python
Python (3.4.3)
py
Accepted
17
3060
90
n, L = map(int, input().split()) s = sorted([input() for _ in range(n)]) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,823
s666494709
p04044
u847390547
1582620375
Python
Python (3.4.3)
py
Accepted
17
3060
189
import sys if __name__ == '__main__': N,L= map(int, input().split()) data=[] moji='' for i in range(N): data.append(input()) data.sort() print(''.join(data))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,824
s727408148
p04044
u964299793
1582615174
Python
Python (3.4.3)
py
Accepted
17
3060
99
n,l=map(int,input().split()) l=[] for _ in range(n): l.append(input()) print("".join(sorted(l)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,825
s377871569
p04044
u141410514
1582603907
Python
Python (3.4.3)
py
Accepted
17
3060
105
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,213,826
s116314159
p04044
u048561338
1582583091
Python
Python (3.4.3)
py
Accepted
17
3060
149
N,L=input().split() dic=list() ans="" for i in range(int(N)): s=input() dic.append(s) dic=sorted(dic) for c in dic: ans=ans+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,213,827
s162279615
p04044
u620157187
1582531491
Python
Python (3.4.3)
py
Accepted
19
3060
115
N, L = map(int, input().split()) S = sorted([input() for _ in range(N)]) s = '' for i in S: s+=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,213,828
s721389493
p04044
u475675023
1582526044
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,213,829
s276903025
p04044
u090198186
1582516481
Python
Python (3.4.3)
py
Accepted
20
3060
168
import sys readline = lambda:sys.stdin.readline().rstrip() N,L = map(int, readline().split()) ss = [readline() for _ in range(N)] ss.sort() ans = ''.join(ss) 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,213,830
s668350885
p04044
u068584789
1582488790
Python
Python (3.4.3)
py
Accepted
18
3060
117
n, l = map(int, 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,213,831
s288761800
p04044
u066855390
1582433944
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,213,832
s601038136
p04044
u940743763
1582433776
Python
Python (3.4.3)
py
Accepted
17
3060
121
n, l = list(map(int, input().split(' '))) ss = [] for i in range(n): ss.append(input()) 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,213,833
s666890662
p04044
u428747123
1582422053
Python
Python (3.4.3)
py
Accepted
19
3060
124
n, l = map(int,input().split()) lst = sorted(list(input() for i in range(n))) lst = "".join(lst) # print(n,l,lst) print(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,213,834
s569535601
p04044
u734936991
1582417729
Python
Python (3.4.3)
py
Accepted
17
3060
161
#!/use/bin/env python3 a = [int(s) for s in input().split()] c = [] for _ in range(0, a[0]): c.append(input()) d = sorted(c) ans = ''.join(d) 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,213,835
s886222443
p04044
u540698208
1582377549
Python
Python (3.4.3)
py
Accepted
17
3064
136
n, l = map(int, input().split()) strings = list() for i in range(n): strings.append(input()) strings.sort() print("".join(strings))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,836
s443687505
p04044
u080364835
1582341292
Python
Python (3.4.3)
py
Accepted
20
3060
94
n, l = map(int, input().split()) sl = [input() for _ in range(n)] sl.sort() print(*sl, 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,213,837
s721388965
p04044
u814265211
1582337527
Python
Python (3.4.3)
py
Accepted
17
3060
99
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,213,838
s365305925
p04044
u757030836
1582330816
Python
Python (3.4.3)
py
Accepted
17
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,213,839
s795088638
p04044
u208309047
1582322993
Python
Python (3.4.3)
py
Accepted
18
3060
312
N, L = map(int, input().split()) #mapでリストに関数を適用する A = []#配列用意 for i in range(N): A.append(input()) #Nこの文字列を読み込み 行列 A.sort() #ソートする ans = "" #文字列の変数用意 for i in range(N): ans += A[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,213,840
s392463971
p04044
u816070625
1582265229
Python
Python (3.4.3)
py
Accepted
17
3060
130
N,L=map(int,input().split()) A=[] for i in range(N): A.append(input()) A.sort() ans="" for i in range(N): ans+=A[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,213,841
s772019065
p04044
u639340617
1582199705
Python
Python (3.4.3)
py
Accepted
17
3060
97
n, l = list(map(int, input().split())) s = [input() for i 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,213,842
s507468789
p04044
u981206782
1582176708
Python
Python (3.4.3)
py
Accepted
17
3060
113
n,l=map(int,input().split()) s=[input() for i in range(n)] s.sort() ans="" for si in s: ans=ans+si 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,213,843
s214488496
p04044
u094191970
1582174306
Python
Python (3.4.3)
py
Accepted
17
3060
106
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) 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,213,844
s848079205
p04044
u955691979
1582171927
Python
Python (3.4.3)
py
Accepted
17
3064
103
a = input().split() s = [input() for i in range(int(a[0]))] b = '' s.sort() b = ''.join(s) print(b)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,845
s471940528
p04044
u898058223
1582152708
Python
Python (3.4.3)
py
Accepted
16
3060
125
N,L=map(int,input().split()) S=[] for i in range(N): S.append(input()) S=sorted(S) for i in range(N): print(S[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,213,846
s278249862
p04044
u332518246
1582150154
Python
Python (3.4.3)
py
Accepted
19
3060
237
#B - 文字列大好きいろはちゃんイージー #input N L N,L = map(int,input().split()) #input S1 ~ SN as list S S = [input() for _ in range(N)] #辞書順にソート S.sort() #文字列を結合 str = ''.join(S) print(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,213,847
s147574330
p04044
u016901717
1582144858
Python
Python (3.4.3)
py
Accepted
17
3060
105
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,213,848
s481725385
p04044
u553070631
1582141848
Python
Python (3.4.3)
py
Accepted
17
3060
113
n,l=map(int,input().split()) s=[input() for i in range(n)] s.sort() for i in range(n): a=''.join(s) 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,213,849
s598572598
p04044
u734434881
1582138808
Python
Python (3.4.3)
py
Accepted
18
3060
127
num, length = map(int, input().split()) array = [] for i in range(num): array.append(input()) print("".join(sorted(array)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,850
s647879586
p04044
u750838232
1582076585
Python
Python (3.4.3)
py
Accepted
19
3060
94
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,213,851
s173515273
p04044
u434872492
1582073676
Python
Python (3.4.3)
py
Accepted
17
3060
145
N,L=map(int,input().split()) S=[] for i in range(N): s=input() S.append(s) S.sort() ans="" for i in range(N): ans=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,213,852
s714153182
p04044
u530383736
1582007062
Python
Python (3.4.3)
py
Accepted
17
3060
179
# -*- coding: utf-8 -*- #---------- n,l = list(map(int, input().rstrip().split())) s_list = [input().strip() for _ in range(n)] #---------- s_list.sort() print("".join(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,213,853
s672604751
p04044
u749770850
1581985156
Python
Python (3.4.3)
py
Accepted
17
3060
91
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,213,854
s097301443
p04044
u519939795
1581975615
Python
Python (3.4.3)
py
Accepted
18
3060
89
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,213,855
s199348391
p04044
u432226259
1581970055
Python
Python (3.4.3)
py
Accepted
17
3060
122
N, L = map(int,input().split()) S = [] for i in range (0, N): S.append(input()) S_ans = sorted(S) print(''.join(S_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,213,856
s593252058
p04044
u746849814
1581949562
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,213,857
s941337621
p04044
u074338678
1581948929
Python
Python (3.4.3)
py
Accepted
17
3060
91
n, l = map(int, input().split()) s = sorted([input() for i in range(n)]) print(*s, sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,858
s608451210
p04044
u448659077
1581919367
Python
Python (3.4.3)
py
Accepted
17
3060
97
#ABC042 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,213,859
s708421354
p04044
u182594853
1581911410
Python
Python (3.4.3)
py
Accepted
17
3060
146
n, l = map(int, input().split()) s=[] for i in range(n): s.append(input()) sa=sorted(s) ans="" for i in range(n): ans += sa[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,213,860
s065401694
p04044
u243535639
1581881596
Python
Python (3.4.3)
py
Accepted
17
3060
163
def main(): N, L = map(int, input().split()) s_list = [input() for _ in range(N)] print("".join(sorted(s_list))) 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,213,861
s631432193
p04044
u150985282
1581878554
Python
Python (3.4.3)
py
Accepted
17
3060
110
[N, L] = input().split() s = [input() for _ in range(int(N))] s.sort() S = "" for i in s: S += 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,213,862
s607990987
p04044
u398610336
1581876794
Python
Python (3.4.3)
py
Accepted
17
3060
88
N,L = map(int,input().split()) S = sorted([input() for _ in range(N)]) print(*S,sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,863
s786902253
p04044
u796708718
1581866836
Python
Python (3.4.3)
py
Accepted
17
3060
133
N, L = [int(i) for i in input().split(" ")] lst = [] for i in range(1,N+1): lst.append(input()) lst.sort() 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,213,864
s143366944
p04044
u151107315
1581840710
Python
Python (3.4.3)
py
Accepted
17
3060
129
N, L = map(int, input().split()) s_li = [input() for i in range(N)] s_li.sort() ans = "" for s in s_li : 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,213,865
s345690719
p04044
u217627525
1581840074
Python
Python (3.4.3)
py
Accepted
17
3060
118
n,l=map(int,input().split()) s=[input() for _ in range(n)] 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,213,866
s920722445
p04044
u627600101
1581825818
Python
Python (3.4.3)
py
Accepted
17
3060
143
N,L=map(int,input().split()) S=["0"]*N for k in range(N): S[k]=input() S.sort() Answer="" for k in range(N): Answer+=S[k] 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,213,867
s854807757
p04044
u278057806
1581824730
Python
Python (3.4.3)
py
Accepted
17
3060
119
N, L = map(int, input().split()) S = [input() for i in range(N)] S.sort() for i in S: print(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,213,868
s204345752
p04044
u712768978
1581817025
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,213,869
s901210586
p04044
u904995051
1581800678
Python
Python (3.4.3)
py
Accepted
17
3060
88
n,l = map(int,input().split()) s = [input() for i in range(n)] print(*sorted(s),sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,870
s638120820
p04044
u052221988
1581798362
Python
Python (3.4.3)
py
Accepted
19
3060
148
n, l = map(int, input().split()) str_a = "" list_a = [input() for i in range(n)] list_a.sort() for words in list_a : str_a += words print(str_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,213,871
s322567715
p04044
u133936772
1581752811
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,213,872
s162225629
p04044
u358254559
1581742438
Python
Python (3.4.3)
py
Accepted
17
3060
134
n,l = map(int, input().split()) s = [] for _ in range(n): s.append(input()) s.sort() ans = ''.join([str(n) for n in 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,213,873
s877008867
p04044
u534450736
1581710545
Python
Python (3.4.3)
py
Accepted
17
3060
131
n, l = map(int, input().split()) word = [] for _ in range(n): word.append(input()) word.sort() print(''.join(_ for _ in word))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,874
s824328845
p04044
u953794676
1581697475
Python
Python (3.4.3)
py
Accepted
17
3060
147
n, l = map(int, input().split()) string_list = [] for i in range(n): string_list.append(input()) string_list.sort() 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,213,875
s072202251
p04044
u527993431
1581686034
Python
Python (3.4.3)
py
Accepted
18
3060
132
N,L=map(int,input().split()) P=[] for i in range (N): P.append(input()) Q=sorted(P) for i in range(N): print(Q[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,213,876
s644969921
p04044
u185424824
1581684184
Python
Python (3.4.3)
py
Accepted
17
3060
125
N,L = map(int,input().split()) S = [input() for i in range(N)] S.sort() A = S[0] for i in range(N-1): A += S[i+1] 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,213,877
s238871755
p04044
u867848444
1581684071
Python
Python (3.4.3)
py
Accepted
17
3060
88
n,l=map(int,input().split()) s=[input() for i in range(n)] 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,213,878
s087201220
p04044
u225388820
1581683769
Python
Python (3.4.3)
py
Accepted
17
3060
79
n,l=map(int,input().split()) print(*sorted([input() for i in range(n)]),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,213,879
s256023600
p04044
u977661421
1581683666
Python
Python (3.4.3)
py
Accepted
17
3060
174
# -*- coding: utf-8 -*- n, l = map(int,input().split()) s = [] for i in range(n): s.append(str(input())) 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,213,880
s035062111
p04044
u620084012
1581683603
Python
Python (3.4.3)
py
Accepted
17
3060
90
N, L = map(int,input().split()) S = sorted([input() for k 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,213,881
s810695407
p04044
u788137651
1581683601
Python
Python (3.4.3)
py
Accepted
75
6864
1,495
# #    ⋀_⋀  #   (・ω・) # ./ U ∽ U\ # │* 合 *│ # │* 格 *│ # │* 祈 *│ # │* 願 *│ # │*   *│ #  ̄ # import sys sys.setrecursionlimit(10**6) input=sys.stdin.readline from math import floor,sqrt,factorial,hypot,log #log2ないyp from heapq import heappop, heappush, heappushpop from collections import Counter,default...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,882
s834509046
p04044
u761320129
1581683516
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,213,883
s667491811
p04044
u287920108
1581612094
Python
Python (3.4.3)
py
Accepted
21
3060
97
N, L = map(int, input().split()) lst = [input() for _ in range(N)] lst.sort() 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,213,884
s681421841
p04044
u996434204
1581542772
Python
Python (3.4.3)
py
Accepted
17
3060
109
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,213,885
s290829779
p04044
u764000168
1581524876
Python
Python (3.4.3)
py
Accepted
17
3060
103
n, l = map(int, input().split()) sList = [input() for _ in range(n)] sList.sort() print("".join(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,213,886
s278007335
p04044
u068595072
1581481385
Python
Python (3.4.3)
py
Accepted
17
3060
150
n, l = list(map(int, input().rstrip().split())) s = [] for _ in range(n): s += [input()] s.sort() ans = str() for x in s: 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,213,887
s740221828
p04044
u189487046
1581450789
Python
Python (3.4.3)
py
Accepted
17
3060
141
n, l = map(int, input().split()) sl = [] for _ in range(n): sl.append(input()) sl.sort() ans = "" for s in sl: 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,213,888
s633874607
p04044
u374082254
1581444867
Python
Python (3.4.3)
py
Accepted
17
3060
120
N, L = [int(i) for i in input().split()] S = [] for s in range(0, 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,213,889
s983168747
p04044
u772649753
1581393310
Python
Python (3.4.3)
py
Accepted
17
3060
108
n,l = map(int,input().split()) words = [input() for i in range(n)] word = sorted(words) print("".join(word))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,890
s528347713
p04044
u103902792
1581391268
Python
Python (3.4.3)
py
Accepted
17
3060
120
n,l = map(int,input().split()) words = [input() for _ in range(n)] 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,213,891
s150067839
p04044
u298297089
1581390770
Python
Python (3.4.3)
py
Accepted
21
3316
90
n,l = map(int, input().split()) s = sorted([input() for i in range(n)]) print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,892
s512803846
p04044
u630027862
1581383426
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,213,893
s210862023
p04044
u670133596
1581310692
Python
Python (3.4.3)
py
Accepted
17
3060
91
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,213,894
s666156279
p04044
u300778480
1581301714
Python
Python (3.4.3)
py
Accepted
18
3060
155
try: N, L = map(int, input().split()) l = [] for i in range(N): l.append(input()) l_ = sorted(l) print(''.join(l_)) except EOFError: pass
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,895
s732963765
p04044
u686713618
1581296891
Python
Python (3.4.3)
py
Accepted
17
3060
157
N, L = map(int, input().split()) L = [] for i in range (N): S = str(input()) L.append(S) Ls = sorted(L) oneLinerString="".join(Ls) print(oneLinerString)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,896
s107376565
p04044
u609814378
1581271985
Python
Python (3.4.3)
py
Accepted
17
3060
124
N, L = map(int, input().split()) S = [] for _ in range(N): S.append(input()) S1 = sorted(S) S2 ="".join(S1) print(S2)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,897
s799196425
p04044
u721970149
1581261420
Python
Python (3.4.3)
py
Accepted
17
3060
194
# 入力 : 縦並びの数字N個 N, L = map(int, input().split()) list_A = [0 for i in range(0,N)] for i in range(0,N) : list_A[i] = input() list_A.sort() ans = "".join(list_A) 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,213,898
s097902928
p04044
u686036872
1581232627
Python
Python (3.4.3)
py
Accepted
17
3060
117
N, L = map(int, input().split()) list=[] for i in range(N): list.append(input()) list.sort() 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,213,899
s824816692
p04044
u541610817
1581229532
Python
Python (3.4.3)
py
Accepted
17
3060
114
N, L = [int(x) for x in input().split()] s_lst = [input() for i in range(N)] s_lst.sort() print(''.join(s_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,213,900
s091064342
p04044
u595064211
1581223179
Python
Python (3.4.3)
py
Accepted
17
3060
147
N, L = input().split() S = [] for i in range(int(N)): S.append(input()) # print(S) S_sorted = sorted(S, reverse=False) print("".join(S_sorted))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,901
s298479124
p04044
u454524105
1581139894
Python
Python (3.4.3)
py
Accepted
17
3060
99
n, l = (int(x) for x 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,213,902
s359148269
p04044
u445380615
1581126681
Python
Python (3.4.3)
py
Accepted
28
3064
527
def hikaku(n1, n2): for x, y in zip(n1, n2): if ord(x) == ord(y): continue else: return True if ord(x) > ord(y) else False num, length = map(int, input().split()) wlist = [] for i in range(num): wlist.append(input()) for n in range(num - 1): kumi = [(x, x+1) for x in ...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,903
s520619487
p04044
u723583932
1581039875
Python
Python (3.4.3)
py
Accepted
17
3060
142
#abc042 b n,l=map(int,input().split()) s=[] for i in range(n): x=input() s.append(x) 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,213,904
s751749299
p04044
u732412551
1581016964
Python
Python (3.4.3)
py
Accepted
17
3060
88
N, L = map(int, input().split()) S = "".join(sorted(input() for _ in range(N))) 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,213,905
s495001696
p04044
u572193732
1581013012
Python
Python (3.4.3)
py
Accepted
19
3064
118
N, L = map(int, input().split()) S = [] 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,213,906
s514704290
p04044
u961683150
1580973390
Python
Python (3.4.3)
py
Accepted
17
3060
108
n,l=map(int,input().split()) a=[] for i in range(n): a.append(input()) a=sorted(a) print("".join(a))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,907
s458175640
p04044
u572373398
1580961842
Python
Python (3.4.3)
py
Accepted
18
3060
92
n, l = map(int, input().split()) s = [input() for t 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,213,908
s114663035
p04044
u840958781
1580959677
Python
Python (3.4.3)
py
Accepted
17
3060
104
n,l=map(int,input().split()) a=[] for i in range(n): a.append(input()) a=sorted(a) print("".join(a))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,909
s415567408
p04044
u242031676
1580949719
Python
Python (3.4.3)
py
Accepted
17
3060
79
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,213,910
s289768621
p04044
u143212659
1580944437
Python
Python (3.4.3)
py
Accepted
17
3060
233
#!/usr/bin/env python3 # -*- coding: utf-8 -*- def main(): N, L = map(int, input().split()) S = [] for n in range(N): S.append(input()) S.sort() print(''.join(S)) 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,213,911
s632192224
p04044
u885440767
1580940312
Python
Python (3.4.3)
py
Accepted
17
3060
123
x,y = map(int,input().split()) l = [] for i in range(x): s = input() l.append(s) l.sort() s = "" print (s.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,213,912
s276207417
p04044
u751843916
1580930057
Python
Python (3.4.3)
py
Accepted
17
3060
87
n,l=map(int,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,213,913
s280973959
p04044
u731436822
1580923599
Python
Python (3.4.3)
py
Accepted
17
3060
207
N,L = map(int,input().split()) S = [input() for i in range(N)] S.sort() print("".join(S)) # 文字列にもsortが使える。デフォルトでは辞書順で昇順となる # [dxx,axx,cxx]⇒[axx,cxx,dxx]
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,914
s935422465
p04044
u731436822
1580923477
Python
Python (3.4.3)
py
Accepted
17
3060
90
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,213,915
s528757741
p04044
u047816928
1580918943
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,213,916