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
s201797679
p04044
u185896732
1557196689
Python
Python (3.4.3)
py
Accepted
17
3060
80
n,l=input().split();s=[input() for _ in range(int(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,215,017
s319960164
p04044
u246820565
1557194963
Python
Python (3.4.3)
py
Accepted
18
3060
90
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,018
s389106506
p04044
u806855121
1557181678
Python
Python (3.4.3)
py
Accepted
18
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,215,019
s413169833
p04044
u255943004
1557178792
Python
Python (3.4.3)
py
Accepted
17
3060
182
N,L = map(int,input().split()) str_list = [] for _ in range(N): str_list.append(input()) str_list = sorted(str_list) ans = "" for string in str_list: ans += string 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,020
s423248851
p04044
u581187895
1557162356
Python
Python (3.4.3)
py
Accepted
17
3060
98
n, s_len = map(int, input().split()) arr = sorted([input() for i in range(n)]) print("".join(arr))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,021
s903094890
p04044
u300637346
1557158951
Python
Python (3.4.3)
py
Accepted
17
3060
121
N,L=map(int,input().split()) S = list(input() for i in range(N)) S.sort() s='' for j in range(N): s += S[j] 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,215,022
s571943000
p04044
u077291787
1557138817
Python
Python (3.4.3)
py
Accepted
17
3060
230
# ABC042B - 文字列大好きいろはちゃんイージー / Iroha Loves Strings (ABC Edition) n, l = list(map(int, input().rstrip().split())) lst = sorted([input().rstrip() for _ in range(n)]) for i in lst: 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,215,023
s305417955
p04044
u977193988
1557102551
Python
Python (3.4.3)
py
Accepted
17
3060
155
N,L=map(int,input().split()) english=[] for i in range(N): english.append(input()) english.sort() S='' for i in range(N): S=S+english[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,215,024
s803427379
p04044
u039360403
1557095297
Python
Python (3.4.3)
py
Accepted
17
3060
95
n,l=map(int,input().split()) s=list(input() for i in range(n)) s1=sorted(s) print(''.join(s1))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,025
s041792442
p04044
u167751176
1557088042
Python
Python (3.4.3)
py
Accepted
18
3060
182
def main(): N, L = map(int, input().split()) S = list() for _ in range(N): s = input() S.append(s) S.sort() ans = "".join(S) print(ans) 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,215,026
s800596183
p04044
u875347753
1557073552
Python
Python (3.4.3)
py
Accepted
17
3060
129
N, L = map(int, input().split()) S = [input() for i in range(N)] S.sort() ans = S[0] for arg in S[1:]: ans += arg 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,027
s875487467
p04044
u335145501
1557022286
Python
Python (3.4.3)
py
Accepted
17
3060
221
def task_b(): """ https://atcoder.jp/contests/abc042/tasks/abc042_b """ n, _ = map(int, input().split()) sss = [input().strip() for _ in range(n)] sss.sort() print(''.join(sss)) task_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,215,028
s606507230
p04044
u732870425
1557005749
Python
Python (3.4.3)
py
Accepted
17
3060
120
N, L = map(int, input().split()) S = [input() for _ in range(N)] S.sort() ans = "" 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,215,029
s753861741
p04044
u131666536
1556979094
Python
Python (3.4.3)
py
Accepted
17
3060
164
# -*- coding: utf-8 -*- n, l = map(int, input().split()) strings = [] for _ 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,215,030
s530594837
p04044
u767664985
1556969190
Python
Python (3.4.3)
py
Accepted
17
3060
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,031
s562330994
p04044
u191635495
1556943142
Python
Python (3.4.3)
py
Accepted
22
3064
920
N, L = map(int, input().split()) S = [] master = 'abcdefghijklmnopqrstuvwxyz' def f(s1, s2, l): for i in range(l): if master.index(s1[i]) == master.index(s2[i]): continue elif master.index(s1[i]) > master.index(s2[i]): return 'greater' elif master.index(s1[i]) < mast...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,032
s206505722
p04044
u059262067
1556939291
Python
Python (3.4.3)
py
Accepted
17
3060
127
n, b = (int(_) for _ in input().split()) l = [input() for i in range(n)] l = sorted(l) [print(i,end="") for i in l] 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,215,033
s275784153
p04044
u734548018
1556920598
Python
Python (3.4.3)
py
Accepted
17
3060
121
N,L = map(int, input().split()) Ln = [] for _ in range(N): Ln.append(str(input())) Ln = sorted(Ln) print(*Ln,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,034
s497796318
p04044
u166621202
1556910034
Python
Python (3.4.3)
py
Accepted
18
3060
85
N,L=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,215,035
s541766683
p04044
u491656579
1556909162
Python
Python (3.4.3)
py
Accepted
26
3444
146
import sys from collections import Counter n, l = map(int, input().split()) s_list = sorted([input() for _ in range(n)]) 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,215,036
s583949688
p04044
u728566015
1556853856
Python
Python (3.4.3)
py
Accepted
17
3060
131
N, L = map(int, input().split()) S = [] for i in range(N): S.append(input()) S = sorted(S) new_S = "".join(S) print(new_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,037
s278320136
p04044
u592248346
1556820161
Python
Python (3.4.3)
py
Accepted
17
3060
88
n,l = 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,215,038
s509352717
p04044
u779483561
1556781282
Python
Python (3.4.3)
py
Accepted
17
3060
116
N, L = list(map(int,input().split())) S = [input() for i in range(N)] S.sort() for str in S: print(str, 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,039
s074151611
p04044
u120691615
1556773859
Python
Python (3.4.3)
py
Accepted
17
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,215,040
s024115958
p04044
u120691615
1556773797
Python
Python (3.4.3)
py
Accepted
17
3060
116
N,L = map(int,input().split()) S = [input() for i 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,215,041
s373837650
p04044
u651277159
1556750027
Python
Python (3.4.3)
py
Accepted
17
3060
106
N, L = [int(x) for x in input().split()] print("".join(sorted([input() for _ in range(N)],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,215,042
s162499153
p04044
u017271745
1556739480
Python
Python (3.4.3)
py
Accepted
17
3060
120
N, L = map(int, input().split()) S = [input() for i 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,215,043
s720251899
p04044
u211236379
1556719416
Python
Python (3.4.3)
py
Accepted
17
3060
96
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,215,044
s724390170
p04044
u382431597
1556663125
Python
Python (3.4.3)
py
Accepted
17
3060
161
n,l = list(map(int, input().split())) s = [] for i in range(n): tmp = input() s.append(tmp) s.sort() for i in range(n): print(s[i], end = "") print()
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,045
s824652229
p04044
u731368968
1556631429
Python
Python (3.4.3)
py
Accepted
19
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,215,046
s495119466
p04044
u710789518
1556624409
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,215,047
s781323176
p04044
u576434377
1556601142
Python
Python (3.4.3)
py
Accepted
17
3060
117
N,L = map(int,input().split()) Ss = [] for i in range(N): Ss.append(input()) Ss = sorted(Ss) 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,215,048
s639838993
p04044
u186838327
1556599528
Python
Python (3.4.3)
py
Accepted
17
3060
116
n, l = map(int, input().split()) ss = ['0']*n for i in range(n): ss[i] = str(input()) 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,215,049
s490202564
p04044
u641722141
1556546259
Python
Python (3.4.3)
py
Accepted
17
3060
126
cnt,l = map(int,input().split()) list1 = [] for x in range(cnt): 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,215,050
s004030309
p04044
u442030035
1556513832
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,051
s493859728
p04044
u655834330
1556503747
Python
Python (3.4.3)
py
Accepted
17
3060
259
def read_input(): n, l = map(int, input().split()) slist = [] for i in range(n): slist.append(input().strip()) return n, l, slist if __name__ == '__main__': n, l, slist = read_input() 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,215,052
s429042593
p04044
u641722141
1556489737
Python
Python (3.4.3)
py
Accepted
17
3060
88
a,b = map(int,input().split()) s = sorted([input() for x in range(a)]) 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,053
s407215860
p04044
u589381719
1556484371
Python
Python (3.4.3)
py
Accepted
19
3060
137
N, L = map(int,input().split()) lists = [] for i in range(N): lists.append(input()) lists.sort() s="" for i in lists: 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,215,054
s737932733
p04044
u592248346
1556406999
Python
Python (3.4.3)
py
Accepted
18
3060
127
n,l = map(int,input().split()) a = [] for i in range(n): a.append(input()) a.sort() for i in a: 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,215,055
s744580101
p04044
u919633157
1556391764
Python
Python (3.4.3)
py
Accepted
18
3060
83
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,056
s299086149
p04044
u118147328
1556385433
Python
Python (3.4.3)
py
Accepted
19
3060
119
N, L = map(int, input().split()) S = sorted([input() for _ in range(N)]) 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,215,057
s812536530
p04044
u733337827
1556384604
Python
Python (3.4.3)
py
Accepted
17
3060
111
N, L = map(int, input().split()) st = [] for x in range(N): st.append(input()) st.sort() print("".join(st))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,058
s184778421
p04044
u591779169
1556373013
Python
Python (3.4.3)
py
Accepted
17
3060
98
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,215,059
s743256114
p04044
u221345507
1556314367
Python
Python (3.4.3)
py
Accepted
17
3060
158
N, L = map(int,input().split()) alphabet = [] for i in range (N): word = input() alphabet.append(word) alphabet.sort() print(''.join(alphabet))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,060
s315462358
p04044
u209918867
1556281944
Python
Python (3.4.3)
py
Accepted
17
3060
83
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,215,061
s597352432
p04044
u141642872
1556261164
Python
Python (3.4.3)
py
Accepted
17
3060
109
[N,L] = list(map(int,input().split())) S = [input() for i in range(N)] S = sorted(S) S = "".join(S) print(S)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,062
s927158338
p04044
u619458041
1556159305
Python
Python (3.4.3)
py
Accepted
17
3060
224
import sys def main(): input = sys.stdin.readline N, L = map(int, input().split()) A = [input().strip() for _ in range(N)] A = sorted(A) return ''.join(A) if __name__ == '__main__': print(main())
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,063
s684275436
p04044
u436982376
1556133006
Python
Python (3.4.3)
py
Accepted
19
3188
155
n,l=(int(x) for x in input().split()) mojil=[] for i in range(n): mojil.append(input()) mojil.sort() for i in range(n): print(mojil[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,064
s047967599
p04044
u783565479
1556081026
Python
Python (3.4.3)
py
Accepted
18
3060
124
N, L = list(map(int, input().split())) s = [input() for i 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,215,065
s389344389
p04044
u813371068
1556062648
Python
Python (3.4.3)
py
Accepted
17
3060
83
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,066
s589722632
p04044
u609738635
1556042209
Python
Python (3.4.3)
py
Accepted
17
3060
139
N, L = map(int, input().split()) S = [] A = "" for i in range(N): s = input() S.append(s) S.sort() for i in S: A += i print(A)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,067
s426473438
p04044
u804085889
1555972133
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,215,068
s262297845
p04044
u804085889
1555971446
Python
Python (3.4.3)
py
Accepted
17
3060
127
n,l = map(int, input().split()) word = [] for i in range(n): s = input() word.append(s) word.sort() print(*word,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,069
s960907693
p04044
u652081898
1555961925
Python
Python (3.4.3)
py
Accepted
19
3060
120
n, l = map(int, input().split()) s = [input() for _ in range(n)] ans = "" s.sort() 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,215,070
s403980917
p04044
u403832169
1555913244
Python
Python (3.4.3)
py
Accepted
17
3060
122
n,l=map(int,input().split()) s=[] for i in range(n): s.append(input()) order=sorted(s) ans=''.join(order) 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,071
s987162790
p04044
u403832169
1555913096
Python
Python (3.4.3)
py
Accepted
18
3060
83
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print(*s,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,072
s247708952
p04044
u193598069
1555900050
Python
Python (3.4.3)
py
Accepted
18
3060
128
N, L = map(int,input().split()) S = [0 for i in range(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,073
s974562091
p04044
u743848428
1555816502
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,074
s432567385
p04044
u733870825
1555733594
Python
Python (3.4.3)
py
Accepted
17
3060
118
N, L = map(int, input().split()) S = [] for i in range(N): S.append(str(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,075
s528113595
p04044
u956571637
1555616521
Python
Python (3.4.3)
py
Accepted
17
3060
156
N, L = map(int, input().split()) input_list = [input() for i in range(N)] sorted_list = sorted(input_list) comb_str = "".join(sorted_list) print(comb_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,215,076
s028057063
p04044
u055941944
1555566694
Python
Python (3.4.3)
py
Accepted
18
3060
151
# -*- coding utf-8 -*- n,l=map(int,input().split()) s=[] for i in range(n): X=str(input()) s.append(X) f=sorted(s) ans=''.join(f) 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,077
s899925817
p04044
u610473220
1555556679
Python
Python (3.4.3)
py
Accepted
17
3060
134
N, L = map(int, input().split()) SList = [] for i in range(N): SList.append(input()) SList.sort() ans = "".join(SList) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,078
s806146298
p04044
u610473220
1555556499
Python
Python (3.4.3)
py
Accepted
17
3060
160
N, L = map(int, input().split()) SList = [] for i in range(N): SList.append(input()) SList.sort() ans ="" for i in range(N): ans += SList[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,215,079
s256898586
p04044
u864900001
1555554050
Python
Python (3.4.3)
py
Accepted
17
3060
153
#42 n, l = map(int, input().split()) a = [] for i in range(n): a.append(input()) a = sorted(a) 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,215,080
s935824521
p04044
u222138979
1555524132
Python
Python (3.4.3)
py
Accepted
17
3060
160
n, l = (int(_) for _ in input().split()) strings = [] for i in range(n): strings.append(input()) strings.sort() s='' for i in strings: 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,215,081
s973784665
p04044
u449473917
1555515760
Python
Python (3.4.3)
py
Accepted
18
3060
86
a,b=map(int, input().split()) a=[input() for i in range(a)] 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,215,082
s346618387
p04044
u848678027
1555481127
Python
Python (3.4.3)
py
Accepted
17
3060
252
from sys import stdin input1=stdin.readline().rstrip().split() N=int(input1[0]) L=int(input1[1]) input=[] for n in range(N): input.append(stdin.readline().rstrip()) input.sort() output="" for i in range(len(input)): output+=input[i] print(output)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,083
s686097178
p04044
u476048753
1555465314
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,084
s415548388
p04044
u549497563
1555465029
Python
Python (3.4.3)
py
Accepted
17
3060
94
n,l = map(int,input().split()) s = [input() for i in range(n)] s = sorted(s) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,085
s266322183
p04044
u941753895
1555453682
Python
Python (3.4.3)
py
Accepted
17
3060
132
# 入力 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,086
s847867884
p04044
u894694822
1555448144
Python
Python (3.4.3)
py
Accepted
18
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,215,087
s616762944
p04044
u885899351
1555445312
Python
Python (3.4.3)
py
Accepted
17
3060
105
n,l=map(int,input().split()) s=[] for i in range(n):s.append(input()) 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,215,088
s836250317
p04044
u885899351
1555444997
Python
Python (3.4.3)
py
Accepted
17
3060
105
n,l=map(int,input().split()) s=[] for i in range(n):s.append(input()) 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,215,089
s885449689
p04044
u163320134
1555400370
Python
Python (3.4.3)
py
Accepted
17
3060
96
n,l=map(int,input().split()) arr=[input() for _ in range(n)] arr=sorted(arr) print("".join(arr))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,090
s368773059
p04044
u148471096
1555386005
Python
Python (3.4.3)
py
Accepted
17
3060
122
N, L=map(int, input().split()) m_list=list(input() for i in range(N)) new_list=sorted(m_list) print("".join(new_list))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,091
s252041107
p04044
u751780401
1555377470
Python
Python (3.4.3)
py
Accepted
19
3060
87
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,092
s984607926
p04044
u428855582
1555359225
Python
Python (3.4.3)
py
Accepted
17
3060
90
N, L =map(int, input().split()) a =[input() for _ 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,215,093
s145032814
p04044
u145889196
1555341896
Python
Python (3.4.3)
py
Accepted
20
3060
111
N,L=map(int,input().split()) N=[0]*N for i in range(len(N)): N[i]=input() N_s=sorted(N) print(''.join(N_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,094
s751093038
p04044
u803647747
1555291621
Python
Python (3.4.3)
py
Accepted
19
3060
104
N, L = map(int, input().split()) str_list = sorted([input() for _ in range(N)]) print(''.join(str_list))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,095
s538802075
p04044
u457423258
1555256567
Python
Python (3.4.3)
py
Accepted
17
3060
111
n,l = map(int,input().split()) s=[] for i in range(n): s.append(input()) ans=sorted(s) 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,215,096
s479317674
p04044
u080116583
1555254372
Python
Python (3.4.3)
py
Accepted
18
3060
123
nl = list(map(int, input().split())) s = [] for i in range(0, nl[0]): 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,097
s781109682
p04044
u363558926
1555227636
Python
Python (3.4.3)
py
Accepted
18
3060
109
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,215,098
s980849626
p04044
u969190727
1555196952
Python
Python (3.4.3)
py
Accepted
18
3060
121
N,L=map(int,input().split()) List=[] for i in range(N): List.append(input()) List.sort() List="".join(List) print(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,215,099
s413216584
p04044
u902130170
1555181875
Python
Python (3.4.3)
py
Accepted
18
3060
197
# 一行目  n, l = map(int, input().split()) # 二行目以降 # for i in range(h): lines = sorted([str(input()) for i in range(n)]) test = "" for line in lines: test += line print(test)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,215,100
s163014755
p04044
u103341055
1555180529
Python
Python (3.4.3)
py
Accepted
18
3060
127
Num = [int(n) for n in input().rstrip().split()] Str = [input().rstrip() for _ in range(Num[0])] print("".join(sorted(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,215,101
s768331281
p04044
u542932305
1555148313
Python
Python (3.4.3)
py
Accepted
17
3060
99
N, L = map(int, input().split()) S = [input().rstrip() 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,215,102
s369453983
p04044
u556016145
1555126151
Python
Python (3.4.3)
py
Accepted
18
3060
113
N, L = map(int, input().split()) S =[] for _ in range(N): S.append(input()) x = ''.join(sorted(S)) 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,215,103
s378051580
p04044
u732996882
1555119106
Python
Python (3.4.3)
py
Accepted
17
3060
126
n, _ = [int(_) for _ in input().split()] words = [] for _ 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,215,104
s599587133
p04044
u149752754
1555093652
Python
Python (3.4.3)
py
Accepted
17
3060
200
a, b = map(int, input().split()) letters = [] for i in range(a): c = input() letters.append(c) letterss = sorted(letters) mojiretsu = '' for x in letterss: mojiretsu += x print (mojiretsu)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,105
s819016500
p04044
u167161639
1555087318
Python
Python (3.4.3)
py
Accepted
18
3060
93
N, L = 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,215,106
s527336023
p04044
u167161639
1555086875
Python
Python (3.4.3)
py
Accepted
18
3060
118
N, L = map(int, input().split()) s = [input() for i 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,215,107
s720826943
p04044
u055941944
1555032868
Python
Python (3.4.3)
py
Accepted
20
3060
118
# -*- coding utf-8 -*- n,l=map(int,input().split()) s =[str(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,215,108
s039326289
p04044
u831830097
1555031579
Python
Python (3.4.3)
py
Accepted
17
3060
89
n,l = map(int,input().split()) s = sorted([input() for i in range(n)]) print("".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,109
s821767373
p04044
u091051505
1554860019
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,215,110
s431913111
p04044
u055941944
1554818093
Python
Python (3.4.3)
py
Accepted
17
3060
120
# -*- coding utf-8 -*- n,s =map(int,input().split()) s = [str(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,215,111
s673436503
p04044
u706695185
1554782938
Python
Python (3.4.3)
py
Accepted
18
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,215,112
s037990384
p04044
u363438602
1554782092
Python
Python (3.4.3)
py
Accepted
18
3064
248
n,l=map(int,input().split()) a=[] for i in range(n): a.append(input()) for j in range(n): for i in range(j): if a[i]>a[j]: b=a[i] a[i]=a[j] a[j]=b for i in range(1,n): a[0] += a[i] print(a[0])
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,113
s257641447
p04044
u411544692
1554781351
Python
Python (3.4.3)
py
Accepted
17
3060
113
N, L = map(int, input().split()) words = [input() for _ in range(N)] words.sort() ans = ''.join(words) 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,114
s838940806
p04044
u993461026
1554764243
Python
Python (3.4.3)
py
Accepted
18
3060
100
N, L = map(int, input().rstrip().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,215,115
s631004701
p04044
u319818856
1554762983
Python
Python (3.4.3)
py
Accepted
18
3060
253
def iroha_loves_strings(N: int, L: int, S: list) -> str: return ''.join(sorted(S)) if __name__ == "__main__": N = 0 N, L = map(int, input().split()) S = [input() for _ in range(N)] ans = iroha_loves_strings(N, L, 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,215,116