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
s243267869
p04044
u535659144
1585692417
Python
Python (3.4.3)
py
Accepted
17
3060
116
lis=input().split() string_list=[input() for i in range(int(lis[0]))] 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,617
s952112443
p04044
u214936751
1585684703
Python
Python (3.4.3)
py
Accepted
17
3060
97
N, L = map(int, input().split()) ans = sorted([input() for i in range(N)]) 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,618
s640962017
p04044
u870518235
1585623635
Python
Python (3.4.3)
py
Accepted
18
3060
138
N, L = map(int, input().split()) S = [input() for i in range(N)] SS = sorted(S) ans = "" for i in range(N): ans += SS[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,619
s891564725
p04044
u479638406
1585618715
Python
Python (3.4.3)
py
Accepted
17
3060
99
n, l = map(int, input().split()) s = [input() for _ in range(n)] s.sort() 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,620
s939565311
p04044
u443872523
1585606976
Python
Python (3.4.3)
py
Accepted
18
3060
168
N, L = map(int, input().split()) char_list = sorted([input() for i in range(N)]) combined_char = "" for cl in char_list: combined_char += cl print(combined_char)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,621
s029295758
p04044
u388927326
1585579372
Python
Python (3.4.3)
py
Accepted
17
3060
207
#!/usr/bin/env python3 def main(): n, l = map(int, input().split()) s = [] for i 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,622
s799163565
p04044
u857547702
1585549753
Python
Python (3.4.3)
py
Accepted
17
3060
87
N,L=map(int,input().split()) l=[input() for i in range(N)] a=sorted(l) print(*a,sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,623
s210079442
p04044
u920103253
1585541971
Python
Python (3.4.3)
py
Accepted
17
3060
95
n,l=[int(x) for x in input().split()] b=[input() for x in range(n)] b.sort() print(''.join(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,624
s095380916
p04044
u852790844
1585533577
Python
Python (3.4.3)
py
Accepted
17
3060
133
n,l = map(int,input().split()) s = [input() for i in range(n)] s2 = sorted(s) ans = "" for i in range(n): ans += s2[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,625
s079024314
p04044
u672054421
1585523547
Python
Python (3.4.3)
py
Accepted
17
3060
138
N, L = map(int, input().split()) S = [input() for i in range(N)] mojiretu = "" S.sort() for x in S: mojiretu += x print(mojiretu)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,626
s515439787
p04044
u440129511
1585513044
Python
Python (3.4.3)
py
Accepted
18
3060
84
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,213,627
s407524529
p04044
u947883560
1585504815
Python
Python (3.4.3)
py
Accepted
17
3064
539
#!/usr/bin/env python3 import sys sys.setrecursionlimit(10**8) INF = float("inf") def solve(N: int, L: int, S: "List[str]"): S.sort() print("".join(S)) return def main(): def iterate_tokens(): for line in sys.stdin: for word in line.split(): yield word tokens...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,628
s039418262
p04044
u391675400
1585497171
Python
Python (3.4.3)
py
Accepted
18
3060
173
n,l = map(int,(input().split())) #N個の長さLの文字列 s = [input() for i in range(n)] s.sort() result = "" for i in range(n): result = result + s[i] print(result)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,629
s625203304
p04044
u131406572
1585496190
Python
Python (3.4.3)
py
Accepted
17
3060
84
n,m=map(int,input().split()) a=[input() for i in range(n)] a.sort() print(*a,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,630
s797193835
p04044
u735654057
1585486418
Python
Python (3.4.3)
py
Accepted
17
3060
161
# https://atcoder.jp/contests/abc042/tasks/abc042_b n, _ = map(int, input().split()) s = [] for i in range(n): s.append(input()) print("".join(sorted(s)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,631
s216188477
p04044
u040823151
1585475287
Python
Python (3.4.3)
py
Accepted
17
3060
110
N,L = [int(i) for i in input().split()] s = [] for n in range(N): s.append(input()) 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,632
s679815012
p04044
u226191225
1585442487
Python
Python (3.4.3)
py
Accepted
18
3316
112
n,l = map(int,input().split()) s = [0] * n for i in range(n): s[i] = str(input()) 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,633
s852337717
p04044
u253681061
1585420521
Python
Python (3.4.3)
py
Accepted
16
3060
116
n,l = [int(x) for x in input().split()] S = [] for _ in range(n): S.append(input()) 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,634
s778230236
p04044
u760961723
1585405139
Python
Python (3.4.3)
py
Accepted
17
3060
102
N, L = map(int,input().split()) a = [str(input()) for i in range(N)] print("".join(list(sorted(a))))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,635
s655928113
p04044
u506910932
1585363597
Python
Python (3.4.3)
py
Accepted
17
3060
109
n, l = map(int, input().split()) d = [] for i in range(n): d.append(input()) d.sort() print("".join(d))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,636
s727100909
p04044
u093041722
1585362020
Python
Python (3.4.3)
py
Accepted
18
3060
108
N,L = (int(x) for x in input().split()) S = [input() for i in range(N)] S.sort() ans = ''.join(S) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,637
s349593533
p04044
u841531687
1585359725
Python
Python (3.4.3)
py
Accepted
18
3188
131
n, l = map(int, input().split()) list = [] for s in range(n): list.append(input()) s_list = sorted(list) print(*s_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,638
s497913384
p04044
u145231176
1585355737
Python
Python (3.4.3)
py
Accepted
17
3060
90
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,639
s032092039
p04044
u787449825
1585352946
Python
Python (3.4.3)
py
Accepted
17
3060
104
N, L = map(int, input().split()) s = [] for _ in range(N): s.append(input()) print(''.join(sorted(s)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,640
s789713220
p04044
u073866020
1585348152
Python
Python (3.4.3)
py
Accepted
17
3060
88
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,641
s097373046
p04044
u309423187
1585321788
Python
Python (3.4.3)
py
Accepted
17
3060
96
n, k = 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,642
s750870523
p04044
u955251526
1585281324
Python
Python (3.4.3)
py
Accepted
19
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,213,643
s935601583
p04044
u408692629
1585197278
Python
Python (3.4.3)
py
Accepted
19
3064
615
list_in = list(map(int, input().split())) num = list_in[0] length = list_in[1] list_str = [None] * num list_flags = [0] * num for i in range(num): list_str[i] = input() result = "" str = "xxxx" for i in range(num): idx = -1 for j, flag in enumerate(list_flags): if flag != 0: continue...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,644
s964466620
p04044
u310855433
1585194812
Python
Python (3.4.3)
py
Accepted
17
3060
109
N, L = map(int,input().split()) Si = [""] * N for n in range(N): Si[n] = input() print("".join(sorted(Si)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,645
s972599123
p04044
u440161695
1585183813
Python
Python (3.4.3)
py
Accepted
17
3060
104
N,L=map(int,input().split()) S=[] for i in range(N): S.append(input()) S=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,646
s461315610
p04044
u877415670
1585183276
Python
Python (3.4.3)
py
Accepted
19
3060
129
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,647
s838249269
p04044
u859364709
1585167033
Python
Python (3.4.3)
py
Accepted
18
3060
94
N,L = map(int,input().split()) S_li = [input() for _ in range(N)] print("".join(sorted(S_li)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,648
s413721540
p04044
u103136263
1585164895
Python
Python (3.4.3)
py
Accepted
38
5284
3,152
# /usr/bin/python3 # -*- coding: utf-8 -*- from queue import Queue from queue import LifoQueue as Stack from math import sqrt, floor, ceil, log2 from fractions import gcd from itertools import permutations, combinations from operator import itemgetter from functools import cmp_to_key __MOD__=(10**9)+7 yn = 'YNeos' j...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,649
s396377408
p04044
u203339404
1585164523
Python
Python (3.4.3)
py
Accepted
17
3060
145
input() import sys a = [] for l in sys.stdin: a.append(l.replace("\n","")) b = sorted(a,reverse=True) c = "" for i in b: c = i + c print(c)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,650
s236115258
p04044
u425236751
1585113686
Python
Python (3.4.3)
py
Accepted
17
3064
95
n,l=input().split() s =[input()for i in range(int(n))] s.sort() ans = "".join(s) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,651
s223738016
p04044
u371132735
1585087362
Python
Python (3.4.3)
py
Accepted
17
3060
100
#abc042_b N, M = 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,652
s962678771
p04044
u305018585
1585024069
Python
Python (3.4.3)
py
Accepted
17
3060
81
a,b=map(int,input().split()) print(''.join(sorted([ input() for i in range(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,653
s240079053
p04044
u768496010
1585021264
Python
Python (3.4.3)
py
Accepted
20
3060
105
n, l = map(int, input().split()) slist = [input() for i 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,654
s778529385
p04044
u756784272
1584986833
Python
Python (3.4.3)
py
Accepted
17
3060
210
N = input().split() list = [] N = int(N[0]) for i in range(1,N+1,1): list.append(input()) list.sort(reverse = False) ans = "" for i in range(1,N+1,1): ans = ans + list[0] list.pop(0) 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,655
s348880763
p04044
u555688810
1584936992
Python
Python (3.4.3)
py
Accepted
18
3060
105
N,L = map(int,input().split()) sl = [input() for _ in range(N)] sl.sort() ans = ("").join(sl) 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,656
s808158393
p04044
u071361440
1584925511
Python
Python (3.4.3)
py
Accepted
18
3060
109
n, l = map(int, input().split()) seq = [] for i in range(n): seq.append(input()) print("".join(sorted(seq)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,657
s773451846
p04044
u396858476
1584923645
Python
Python (3.4.3)
py
Accepted
19
3316
127
n, l = map(int, input().split()) text = [] for i in range(n): text.append(str(input())) text.sort() print("".join(text))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,658
s856450192
p04044
u230717961
1584921152
Python
Python (3.4.3)
py
Accepted
17
3060
99
n, l = [int(i) for i in 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,659
s181246372
p04044
u802963389
1584917822
Python
Python (3.4.3)
py
Accepted
18
3060
92
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,213,660
s230928370
p04044
u316233444
1584915912
Python
Python (3.4.3)
py
Accepted
17
3060
89
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,213,661
s076225275
p04044
u779308281
1584909156
Python
Python (3.4.3)
py
Accepted
17
3060
155
N, L = [int(i) for i in input().split(' ')] S = [] for i in range(N): s = input() S.append(s) S.sort() res = '' for i in S: res += i print(res)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,662
s060402545
p04044
u686253980
1584889609
Python
Python (3.4.3)
py
Accepted
18
3060
161
N, L = [int(i) for i in input().split(' ')] S = [] for i in range(N): s = input() S.append(s) S.sort() res = '' for i in S: res += i print(res)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,663
s121078612
p04044
u089142196
1584847267
Python
Python (3.4.3)
py
Accepted
17
3060
102
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,664
s094228398
p04044
u339199690
1584842439
Python
Python (3.4.3)
py
Accepted
17
3060
137
n, l = map(int, input().split()) lst = [] for i in range(0, n): lst.append(input()) lst.sort() string = ''.join(lst) print(string)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,665
s132029326
p04044
u896726004
1584842295
Python
Python (3.4.3)
py
Accepted
17
3060
137
n, l = map(int, input().split()) s = [] for _ in range(n): s.append(input()) s = sorted(s) 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,666
s374612414
p04044
u460009487
1584834930
Python
Python (3.4.3)
py
Accepted
17
3060
128
n, l = map(int, input().split()) s = [input() for i 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,667
s220765645
p04044
u017415492
1584830490
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 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,668
s324825849
p04044
u260036763
1584825896
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,669
s240202256
p04044
u556069480
1584820747
Python
Python (3.4.3)
py
Accepted
18
3060
151
N,L=map(int, input().split()) letters=[] for i in range(N): letters.append(input()) letters.sort() ans="" for each in letters: ans+=each 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,670
s572447444
p04044
u519835472
1584820455
Python
Python (3.4.3)
py
Accepted
18
3060
129
N,L = list(map(int, input().split())) S = ["" for i in range(N)] for i in range(N): S[i] = input() print("".join(sorted(S)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,671
s614407043
p04044
u789205676
1584819791
Python
Python (3.4.3)
py
Accepted
18
3060
119
N,L = [int(e) for e in input().split(" ")] S = [input() for i in range(N)] S.sort() string = "".join(S) print(string)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,672
s280460458
p04044
u292978925
1584807278
Python
Python (3.4.3)
py
Accepted
21
3316
248
""" kari1 = '3 3' in1 = kari1.split() mylist = [] mylist.append('dxx') mylist.append('axx') mylist.append('cxx') """ in1 = input().split() mylist = [] for num in range(int(in1[0])): mylist.append(input()) mylist.sort() print(''.join(mylist))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,673
s394700170
p04044
u419963262
1584804398
Python
Python (3.4.3)
py
Accepted
18
3060
143
N,L=map(int,input().split()) S=[input().split() for i in range(N)] ans=sorted(S) re_ans="" for j in range(N): re_ans+=ans[j][0] print(re_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,674
s338438680
p04044
u083960235
1584804147
Python
Python (3.4.3)
py
Accepted
38
5180
822
import sys, re, os from collections import deque, defaultdict, Counter from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians from itertools import permutations, combinations, product, accumulate from operator import itemgetter, mul from copy import deepcopy from string import ascii_lowercase, ascii_upper...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,675
s782863898
p04044
u576917603
1584802545
Python
Python (3.4.3)
py
Accepted
18
3060
88
n,l=map(int,input().split()) a=[input() for i in range(n)] 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,676
s883244195
p04044
u580404776
1584801968
Python
Python (3.4.3)
py
Accepted
17
3060
158
N,L=map(int,input().split()) S=[] ans="" for _ in range(N): S.append(input()) SS=sorted(S) for _ in range(N): ans+=SS[0] SS.pop(0) 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,677
s820543796
p04044
u957198490
1584801715
Python
Python (3.4.3)
py
Accepted
18
3060
127
N,L = map(int,input().split()) S = [str(input()) for i in range(N)] S.sort() ans = '' for word in S: ans += word 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,678
s337854840
p04044
u867848444
1584792017
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,679
s852270470
p04044
u861141787
1584791493
Python
Python (3.4.3)
py
Accepted
18
3060
127
n, l = map(int, input().split()) a = [input() for _ in range(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,680
s076577314
p04044
u414699019
1584791436
Python
Python (3.4.3)
py
Accepted
17
3060
85
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,681
s246367436
p04044
u620084012
1584791282
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,682
s163144718
p04044
u799164835
1584790936
Python
Python (3.4.3)
py
Accepted
17
3064
561
# printデバッグ用 import sys argVec = sys.argv if len(argVec) > 1: GBN_DEBUG = True else: GBN_DEBUG = False def dprn(s, i): if GBN_DEBUG: print(", " + s + " = " + str(i), end = "") def dprns(s): if GBN_DEBUG: print(", " + s, end = "") def dprni(i): if GBN_DEBUG: print(str(i), e...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,683
s610569193
p04044
u392319141
1584790837
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,684
s267653115
p04044
u599114793
1584790593
Python
Python (3.4.3)
py
Accepted
18
3060
106
n,l = map(int,input().split()) a = [] for i in range(n): a.append(input()) a.sort() print("".join(a))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,685
s514889488
p04044
u836737505
1584790562
Python
Python (3.4.3)
py
Accepted
17
3060
89
n,l = map(int, input().split()) a = sorted([input() for _ in range(n)]) 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,686
s017381844
p04044
u527993431
1584790553
Python
Python (3.4.3)
py
Accepted
17
3060
130
N,L=map(int,input().split()) S=[] for i in range(N): S.append(input()) M=sorted(S) for i in range(N): print(M[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,687
s512323119
p04044
u970197315
1584790532
Python
Python (3.4.3)
py
Accepted
17
3060
111
n,l=map(int,input().split()) s=[input() for i in range(n)] s.sort() ans='' for ss in s: ans+=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,688
s852475630
p04044
u189487046
1584790497
Python
Python (3.4.3)
py
Accepted
17
3060
120
n, l = map(int, input().split()) S = [] for _ in range(n): s = input() S.append(s) 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,689
s235727028
p04044
u241159583
1584790483
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,690
s150316069
p04044
u818349438
1584790466
Python
Python (3.4.3)
py
Accepted
18
3060
146
n,l = map(int,input().split()) st = [] for i in range(n): st.append(input()) st.sort() ans = "" for i in range(n): ans += st[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,691
s795223564
p04044
u186838327
1584790462
Python
Python (3.4.3)
py
Accepted
18
3060
133
n, l = map(int,input().split()) L = [str(input()) for _ in range(n)] L.sort() ans = '' for i in range(n): ans += L[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,692
s833601095
p04044
u227082700
1584790377
Python
Python (3.4.3)
py
Accepted
18
3060
84
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,693
s779567423
p04044
u977661421
1584790369
Python
Python (3.4.3)
py
Accepted
18
3060
137
# -*- coding: utf-8 -*- n, l = map(int,input().split()) s = [] for i in range(n): s.append(str(input())) s.sort() print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,694
s159926594
p04044
u292978925
1584768779
Python
Python (3.4.3)
py
Accepted
18
3060
196
s = input().split() #s[0]文字列の個数、s[1]文字列の長さ wordCNT = int(s[0]) mylist = [] for num in range(wordCNT): mylist.append(input()) mylist.sort() print(''.join(mylist))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,695
s051802885
p04044
u766566560
1584761773
Python
Python (3.4.3)
py
Accepted
17
3060
173
N, L = map(int, input().split()) list = [] R = '' for i in range(N): S = input() list.append(S) list.sort(reverse=False) for i in range(N): R += list[i] print(R)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,696
s780823742
p04044
u759518460
1584758598
Python
Python (3.4.3)
py
Accepted
17
3060
115
n, l = map(int, input().split()) ans = [] for i in range(n): ans.append(input()) ans.sort() print(''.join(ans))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,697
s225064917
p04044
u078349616
1584758218
Python
Python (3.4.3)
py
Accepted
18
3060
125
N, L = map(int, input().split()) S = sorted([input() for _ in range(N)]) 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,698
s087601370
p04044
u697696097
1584749059
Python
Python (3.4.3)
py
Accepted
17
3060
105
n,l=map(int,input().split()) ss=[] for _ in range(n): ss.append(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,213,699
s499828846
p04044
u951684192
1584738474
Python
Python (3.4.3)
py
Accepted
17
3060
133
l =[] n,n2 = list(map(int,input().split())) for i in range(n): line = input() l.append(line) 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,700
s330419608
p04044
u829094246
1584736895
Python
Python (3.4.3)
py
Accepted
17
3060
86
N,L=map(int, input().split()) print("".join(sorted([input()[:L] 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,701
s172591235
p04044
u973053237
1584731236
Python
Python (3.4.3)
py
Accepted
17
3060
130
n,l=map(int,input().split()) ans="" w=[] for i in range(n): w.append(input()) w.sort() for i in range(n): ans+=w[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,702
s681886191
p04044
u458725980
1584721500
Python
Python (3.4.3)
py
Accepted
22
3316
102
N,L = map(int,input().split()) S = sorted([input() for _ in range(N)],reverse=False) 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,703
s861656303
p04044
u744857643
1584710798
Python
Python (3.4.3)
py
Accepted
17
3060
92
n, l = map(int, input().split()) s = [input() for i in range(n)] print("".join(sorted(s)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,213,704
s520136397
p04044
u910295650
1584672806
Python
Python (3.4.3)
py
Accepted
18
3060
136
N,L=map(int,input().split()) A=[] for i in range(N): s=input() A.append(s) B=sorted(A) for i in range(N): print(B[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,705
s009026684
p04044
u652710582
1584666593
Python
Python (3.4.3)
py
Accepted
18
3060
135
NL = [ x for x in map(int,input().split()) ] cha = [] i = 0 while i < NL[0]: cha.append(input()) i += 1 print(''.join(sorted(cha)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,706
s244921083
p04044
u374815848
1584664091
Python
Python (3.4.3)
py
Accepted
17
3060
356
from sys import stdin lines = stdin.readlines() counter = [] each_line = [] for i, line in enumerate(lines): if i == 0: counter = [int(x) for x in (line.rstrip().split())] else: each_line.append(str(line.rstrip())) line_sort = sorted(each_line) answer = str() for i in range(counter[0]): 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,707
s587166708
p04044
u886142147
1584560552
Python
Python (3.4.3)
py
Accepted
17
3064
92
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,708
s778917541
p04044
u880277518
1584560205
Python
Python (3.4.3)
py
Accepted
17
3060
112
N,L=list(map(int,input().split())) S=[] for i in range(N): S.append(input()) 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,213,709
s661421650
p04044
u223663729
1584555706
Python
Python (3.4.3)
py
Accepted
17
3060
60
N, L, *S = open(0).read().split() 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,710
s701042550
p04044
u637451088
1584548403
Python
Python (3.4.3)
py
Accepted
18
3060
166
import sys n, l = map(int, input().split()) s = [input() for i in range(n)] s.sort() min_str = "" for item in s: min_str += item print("{}".format(min_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,711
s294775016
p04044
u920621778
1584501821
Python
Python (3.4.3)
py
Accepted
17
3060
108
n, l = map(int, input().split()) string_list=[input() for i in range(n)] print(''.join(sorted(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,712
s676463772
p04044
u016323272
1584499756
Python
Python (3.4.3)
py
Accepted
17
3060
136
#ABC042.B N,L = map(int,input().split()) s = [input()for _ in range(N)] 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,713
s634933257
p04044
u004423772
1584499679
Python
Python (3.4.3)
py
Accepted
17
3060
107
n,l = map(int, input().split(' ')) s = [input().rstrip("\r\n") 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,213,714
s558750265
p04044
u197968862
1584402253
Python
Python (3.4.3)
py
Accepted
17
3060
133
n, l = map(int,input().split()) s = [input() for _ in range(n)] 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,715
s590627987
p04044
u641446860
1584377509
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,716