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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s283306319 | p04044 | u552738814 | 1593194040 | Python | Python (3.8.2) | py | Accepted | 28 | 9120 | 161 | n,l = map(int,input().split())
list = []
for i in range(n):
word = input()
list.append(word)
list_connect = "".join(sorted(list))
print(list_connect) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,017 |
s092287193 | p04044 | u444660909 | 1593191676 | Python | PyPy3 (7.3.0) | py | Accepted | 67 | 62648 | 136 | N, L = map(int, input().split())
d = [input() for i in range(N)]
d.sort()
ans = ''
for i in range(N):
ans = ans + d[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,018 |
s439035625 | p04044 | u179025808 | 1593109484 | Python | Python (3.8.2) | py | Accepted | 26 | 9080 | 94 | N, L = map(int, input().split())
S = list(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,019 |
s012658073 | p04044 | u212242633 | 1593104590 | Python | Python (3.8.2) | py | Accepted | 23 | 8944 | 144 | N, L = map(int, input().split())
S = []
for _ in range(N):
S.append(str(input()))
S.sort()
sum_ = ''
for s in S:
sum_ += s
print(sum_) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,020 |
s121573986 | p04044 | u634046173 | 1593032175 | Python | Python (3.8.2) | py | Accepted | 28 | 9176 | 101 | 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,021 |
s567725746 | p04044 | u981898278 | 1593026588 | Python | Python (3.8.2) | py | Accepted | 32 | 9016 | 95 | 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,022 |
s983741830 | p04044 | u981898278 | 1593023576 | Python | Python (3.8.2) | py | Accepted | 30 | 9120 | 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,023 |
s199002481 | p04044 | u697615293 | 1593018812 | Python | Python (3.8.2) | py | Accepted | 30 | 9056 | 113 | s = input().rstrip().split(" ")
t = []
for i in range(int(s[0])):
t.append(input())
print("".join(sorted(t))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,024 |
s325948617 | p04044 | u511457539 | 1593006065 | Python | Python (3.8.2) | py | Accepted | 30 | 9052 | 121 | N, L = map(int, input().split())
S = [str(input()) for i in range(N)]
S = sorted(S)
answer = "".join(S)
print(answer)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,025 |
s651762846 | p04044 | u014333473 | 1592966487 | Python | Python (3.8.2) | py | Accepted | 31 | 9068 | 81 | N,L=map(int,input().split());print(*(sorted([input() for _ in range(N)])),sep='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,026 |
s032449631 | p04044 | u345710188 | 1592966451 | Python | Python (3.8.2) | py | Accepted | 24 | 9160 | 137 | N, L = map(int, input().split())
S = [input() for i in range(N)]
S.sort()
answer = ""
for i in range(N):
answer += S[i]
print(answer) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,027 |
s883114106 | p04044 | u014333473 | 1592966097 | Python | Python (3.8.2) | py | Accepted | 26 | 8932 | 80 | N,L=map(int,input().split());print(''.join(sorted([input() for _ in range(N)]))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,028 |
s955445381 | p04044 | u759412327 | 1592944432 | Python | Python (3.8.2) | py | Accepted | 28 | 9056 | 81 | N,L = map(int,input().split())
print(*sorted([input() for n in range(N)]),sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,029 |
s141553726 | p04044 | u971811058 | 1592939352 | Python | Python (3.8.2) | py | Accepted | 27 | 9112 | 104 | n, l = map(int, input().split())
s = [input() for i in range(n)]
s.sort()
for x in s: print(x, 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,030 |
s443556058 | p04044 | u971811058 | 1592938689 | Python | Python (3.8.2) | py | Accepted | 27 | 9112 | 137 | n, l = map(int, input().split())
s = [""]*n
for i in range(n):
t = input()
s[i]=t
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,213,031 |
s225483614 | p04044 | u820195841 | 1592937408 | Python | Python (3.8.2) | py | Accepted | 27 | 8940 | 121 | N, L = map(int, input().split())
P = [input() for i in range(N)]
P.sort()
ret = ''
for t in P:
ret += str(t)
print(ret) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,032 |
s489980281 | p04044 | u583507988 | 1592927309 | Python | Python (3.8.2) | py | Accepted | 25 | 8976 | 129 | n, l = map(int, input().split())
res = []
for _ in range(n):
s = input()
res.append(s)
ans = sorted(res)
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,033 |
s232027140 | p04044 | u252628711 | 1592925900 | Python | PyPy3 (7.3.0) | py | Accepted | 73 | 62664 | 137 | n,l=map(int,input().split())
sl=[]
for _ in range(n):
s=input()
sl.append(s)
sl.sort()
ans=""
for i in sl:
ans+=i
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,034 |
s612030236 | p04044 | u537976628 | 1592880482 | Python | Python (3.8.2) | py | Accepted | 29 | 9140 | 90 | n, l = map(int, input().split())
S = sorted([input() for _ in range(n)])
print(''.join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,035 |
s698479112 | p04044 | u389188163 | 1592876639 | Python | Python (3.8.2) | py | Accepted | 27 | 9160 | 97 | N, L = map(int, input().split())
s = [input() for _ in range(N)]
t = ''.join(sorted(s))
print(t) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,036 |
s582923702 | p04044 | u017050982 | 1592868798 | Python | Python (3.8.2) | py | Accepted | 26 | 9188 | 116 | N,L =map(int,input().rstrip().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,037 |
s176294420 | p04044 | u245641078 | 1592845122 | Python | Python (3.8.2) | py | Accepted | 30 | 9124 | 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,213,038 |
s721322013 | p04044 | u804954217 | 1592831487 | Python | Python (3.8.2) | py | Accepted | 25 | 9156 | 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,039 |
s813528103 | p04044 | u793430793 | 1592801027 | Python | Python (3.8.2) | py | Accepted | 31 | 9068 | 117 | #ABC042B
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,040 |
s102082169 | p04044 | u793430793 | 1592800794 | Python | Python (3.8.2) | py | Accepted | 28 | 9112 | 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,213,041 |
s313135499 | p04044 | u460399356 | 1592798515 | Python | Python (3.8.2) | py | Accepted | 28 | 8988 | 182 | N,L = map(int, input().split())
S_list = [input() for x in range(N)]
sorted_S_list = sorted(S_list)
result = str()
for s in sorted_S_list:
result = result + s
print(result) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,042 |
s221123441 | p04044 | u844813573 | 1592783802 | Python | Python (3.8.2) | py | Accepted | 23 | 9060 | 157 | n, l = map(int, input().split())
s_list = []
for i in range(n):
s_list.append(input())
s_list = sorted(s_list)
ans_str = "".join(s_list)
print(ans_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,043 |
s334020392 | p04044 | u131453093 | 1592783501 | Python | Python (3.8.2) | py | Accepted | 31 | 9188 | 110 | N, L = map(int, input().split())
lis = [input() for i in range(N)]
for i in sorted(lis):
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,213,044 |
s571910804 | p04044 | u056100633 | 1592782946 | Python | Python (3.8.2) | py | Accepted | 28 | 9168 | 176 | num, length = map(int, input().split())
lst = []
for i in range(num):
lst.append(input())
lst.sort()
str = ''
for i in range(len(lst)):
str += lst[i]
print(str)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,045 |
s271096777 | p04044 | u554954744 | 1592779856 | Python | Python (3.8.2) | py | Accepted | 26 | 9096 | 125 | n, l = map(int, input().split())
ss = [input() for _ in range(n)]
ss.sort()
ans = ""
for s in ss:
ans += s
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,046 |
s311084344 | p04044 | u554954744 | 1592779802 | Python | PyPy3 (7.3.0) | py | Accepted | 67 | 62968 | 125 | n, l = map(int, input().split())
ss = [input() for _ in range(n)]
ss.sort()
ans = ""
for s in ss:
ans += s
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,047 |
s372194073 | p04044 | u554954744 | 1592779775 | Python | PyPy3 (7.3.0) | py | Accepted | 65 | 62640 | 125 | n, l = map(int, input().split())
ss = [input() for _ in range(n)]
ss.sort()
ans = ""
for s in ss:
ans += s
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,048 |
s159293733 | p04044 | u539768961 | 1592763867 | Python | Python (3.8.2) | py | Accepted | 29 | 9048 | 104 | n, l = map(int, input().split())
s = []
for i in range(n):
s.append(input())
print(''.join(sorted(s))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,049 |
s577131468 | p04044 | u640922335 | 1592758283 | Python | Python (3.8.2) | py | Accepted | 33 | 9132 | 154 | N, L = map(int,input().split())
S=[]
for i in range(N):
s=input()
S.append(s)
S=sorted(S)
ans=S[0]
for j in range(1,N):
ans+=S[j]
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,050 |
s056380767 | p04044 | u137228327 | 1592736625 | Python | Python (3.8.2) | py | Accepted | 29 | 9196 | 217 |
#lst = list(map(int,input().split()))
N,L = map(int,input().split())
#print(N,L)
lst = []
for i in range(N):
lst.append(str(input()))
lst.sort()
fin = ''
for i in range(N):
fin+=lst[i]
print(fin)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,051 |
s109681658 | p04044 | u790012205 | 1592734887 | Python | Python (3.8.2) | py | Accepted | 27 | 9048 | 116 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
S.sort()
for s in S:
print(s, 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,052 |
s278274844 | p04044 | u706414019 | 1592732451 | Python | Python (3.8.2) | py | Accepted | 26 | 9024 | 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,213,053 |
s167066088 | p04044 | u706414019 | 1592732042 | Python | Python (3.8.2) | py | Accepted | 29 | 9176 | 176 | N,L = input().split()
txt = []
for i in range(int(N)):
s = input()
txt.append(s)
txt_sort = sorted(txt)
ts = ""
for i in range(int(N)):
ts += txt_sort[i]
print(ts)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,054 |
s449252481 | p04044 | u345778634 | 1592701173 | Python | Python (3.8.2) | py | Accepted | 30 | 9156 | 90 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
print("".join(sorted(S))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,055 |
s121721328 | p04044 | u085717502 | 1592671091 | Python | Python (3.8.2) | py | Accepted | 29 | 9032 | 204 | #!/usr/bin/env python
# coding: utf-8
# In[2]:
N,L = map(int, input().split())
S = []
for _ in range(N):
S.append(input())
# In[6]:
s_sorted = sorted(S)
print("".join(s_sorted))
# In[ ]:
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,056 |
s499459410 | p04044 | u653883313 | 1592662758 | Python | Python (3.8.2) | py | Accepted | 24 | 9172 | 112 | 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,057 |
s509310960 | p04044 | u131411061 | 1592657069 | Python | Python (3.8.2) | py | Accepted | 27 | 9108 | 88 | N,L = map(int,input().split())
S = [input() for _ in range(N)]
print(''.join(sorted(S))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,058 |
s333202529 | p04044 | u188827677 | 1592581885 | Python | Python (3.8.2) | py | Accepted | 28 | 9176 | 90 | n,l = map(int, input().split())
s = sorted([input() for _ in range(n)])
print("".join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,059 |
s275514879 | p04044 | u875769753 | 1592571893 | Python | Python (3.8.2) | py | Accepted | 30 | 9068 | 178 | N , L = map(int,input().split())
Sls = []
for i in range(N):
Sls.append(input())
Sls2 = sorted(Sls,key=str.lower)
moji = ''
for j in range(N):
moji += Sls2[j]
print(moji) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,060 |
s529741134 | p04044 | u400703709 | 1592555720 | Python | Python (3.8.2) | py | Accepted | 29 | 9072 | 186 | n,l = (int(x) for x in input().split())
dict = []
for i in range(0,n):
str = input()
dict.append(str)
# print(i)
# print(dict)
dict.sort()
# print(dict)
print("".join(dict)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,061 |
s723346731 | p04044 | u197237612 | 1592541760 | Python | Python (3.8.2) | py | Accepted | 27 | 9168 | 101 | 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,062 |
s795651774 | p04044 | u364386647 | 1592539213 | Python | Python (3.8.2) | py | Accepted | 27 | 9116 | 156 | def resolve():
N, L = list(map(int, input().split()))
S = [input() for n in range(N)]
S = sorted(S)
print(''.join(S))
return
resolve() | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,063 |
s362908114 | p04044 | u125269142 | 1592537719 | Python | Python (3.8.2) | py | Accepted | 26 | 9036 | 137 | n, l = input().split()
n = int(n)
lists = []
for s in range(0, n, 1):
s = input()
lists.append(s)
lists.sort()
print(''.join(lists)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,064 |
s614522492 | p04044 | u961288441 | 1592524877 | Python | Python (3.8.2) | py | Accepted | 28 | 9072 | 104 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
S.sort(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,065 |
s198247922 | p04044 | u506996808 | 1592522976 | Python | Python (3.8.2) | py | Accepted | 24 | 9096 | 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,213,066 |
s960630596 | p04044 | u506996808 | 1592522763 | Python | Python (3.8.2) | py | Accepted | 33 | 9100 | 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,213,067 |
s812555569 | p04044 | u736577709 | 1592519739 | Python | Python (3.8.2) | py | Accepted | 28 | 9164 | 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,213,068 |
s314339119 | p04044 | u854685063 | 1592519198 | Python | Python (3.8.2) | py | Accepted | 26 | 9152 | 104 | n,l = map(int,input().split())
s = [input() for i in range(n)]
s.sort()
for k in s:
print(k, 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,069 |
s629748568 | p04044 | u925406312 | 1592458087 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 125 | N,L = map(int,input().split())
a=[str(input()) for i in range(N)]
l_sort = sorted(a)
anser = "".join(l_sort)
print(anser) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,070 |
s976490531 | p04044 | u847901871 | 1592449332 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 171 | N, L = map(int, input().split())
iroha_list = []
for _ in range(N):
value = input()
iroha_list.append(value)
new_list = sorted(iroha_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,213,071 |
s332846506 | p04044 | u671861352 | 1592446573 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 198 | #!python3
LI = lambda: list(map(int, input().split()))
# input
N, L = LI()
S = [input() for _ in range(N)]
def main():
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,072 |
s085073784 | p04044 | u440478998 | 1592444030 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 123 | n,l = map(int,input().split())
s = [input() for _ in range(n)]
s.sort()
ss = ""
for i in range(n):
ss += s[i]
print(ss) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,073 |
s246851172 | p04044 | u736546944 | 1592360241 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 133 | [N, L] = list(map(int, input().split()))
list_N = []
for i in range(N):
list_N.append(input())
list_N.sort()
print("".join(list_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,074 |
s980429122 | p04044 | u509739538 | 1592344465 | Python | Python (3.4.3) | py | Accepted | 22 | 3444 | 2,915 | import math
from collections import deque
from collections import defaultdict
import itertools as it
#自作関数群
def readInt():
return int(input())
def readInts():
return list(map(int, input().split()))
def readChar():
return input()
def readChars():
return input().split()
def factorization(n):
res = []
if n%2==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,213,075 |
s444795179 | p04044 | u780698286 | 1592274331 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 114 | a = list(map(int, input().split()))
b = [input() for i in range(a[0])]
c = sorted(b)
for f in c:
print(f,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,076 |
s333607914 | p04044 | u149551680 | 1592228459 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 154 | N, L = list(map(int, input().strip().split()))
strl = [input().strip() for s in range(N)]
strl = sorted(strl)
s = ''
for t in strl:
s += str(t)
print(s) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,077 |
s601432387 | p04044 | u552145906 | 1592203435 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 121 | N, L = map(int, input().split())
s = []
for _ in range(N):
var = input()
s.append(var)
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,078 |
s467017979 | p04044 | u488670118 | 1592180703 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 110 | 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,079 |
s908646720 | p04044 | u146346223 | 1592170168 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 97 | n, l = map(int, input().split())
strs = sorted([input() for i in range(n)])
print(''.join(strs)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,080 |
s769216324 | p04044 | u647087591 | 1592161183 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 137 | N, L = map(int, input().split())
str_list = []
for _ in range(N):
S = input()
str_list.append(S)
print(''.join(sorted(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,213,081 |
s014885066 | p04044 | u642012866 | 1592119313 | 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,213,082 |
s022567922 | p04044 | u629540524 | 1592109405 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | n, l = map(int, input().split())
s = sorted(input() for i in range(n))
print(*s, sep = '') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,083 |
s072069174 | p04044 | u998733244 | 1592096010 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 117 | #!/usr/bin/env python3
N, L = map(int, input().split())
S = sorted([input() for i in range(N)])
print(''.join(S))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,084 |
s657045276 | p04044 | u951289777 | 1592089121 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 152 | num, len = map(int, input().split())
word_list = []
for n in range(0, num):
word_list.append(input())
word_list.sort()
print("".join(word_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,085 |
s682509414 | p04044 | u238940874 | 1592084491 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 85 | n,l=map(int,input().split())
s=[input() for _ in range(n)]
s.sort()
print(''.join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,086 |
s122170321 | p04044 | u709799578 | 1592065327 | 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,087 |
s342005851 | p04044 | u697658632 | 1592027543 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 91 | n, l = map(int, input().split())
s = sorted([input() for i in range(n)])
print(*s, sep='')
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,088 |
s771404167 | p04044 | u790965152 | 1592021679 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 137 | #!/usr/bin/env python3
n, l = map(int, input().split())
s = []
for _ in range(n):
s.append(str(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,089 |
s969400941 | p04044 | u918770092 | 1592013864 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 148 | n, l = map(int, input().split())
s = list()
for _ in range(n):
s.append(str(input()))
s = sorted(s)
a = ''
for i in range(n):
a += s[i]
print(a) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,090 |
s715673008 | p04044 | u918770092 | 1592013850 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 148 | n, l = map(int, input().split())
s = list()
for _ in range(n):
s.append(str(input()))
s = sorted(s)
a = ''
for i in range(n):
a += s[i]
print(a) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,091 |
s496274971 | p04044 | u124212130 | 1591968785 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 162 | N, L = map(int, input().split())
word_list = []
for i in range(N):
word = input()
word_list.append(word)
word_list.sort()
ANS = "".join(word_list)
print(ANS) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,092 |
s878528551 | p04044 | u193927973 | 1591902150 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 103 | N, L=map(int, input().split())
s=[]
for _ in range(N):
s.append(input())
s.sort()
print("".join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,093 |
s473936104 | p04044 | u414772150 | 1591899034 | Python | Python (3.4.3) | py | Accepted | 21 | 3064 | 297 | a=list(map(int,input().split()))
b=[input() for i in range(a[0])]
for i in range(a[0]-1):
for j in range(a[0]-1):
if (b[a[0]-1-j]<b[a[0]-2-j]):
temp=b[a[0]-j-1]
b[a[0]-j-1]=b[a[0]-2-j]
b[a[0]-2-j]=temp
for i in range(a[0]):
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,094 |
s903754926 | p04044 | u500376440 | 1591895948 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 100 | N,L=map(int,input().split())
S=[input() for i in range(N)]
s=sorted(S)
[print(i,end="") for i in s]
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,095 |
s741411421 | p04044 | u376754170 | 1591887149 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 122 | n, l = map(int, input().split())
strs = []
for i in range(n):
strs.append(input())
strs.sort()
print(''.join(strs))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,096 |
s976742567 | p04044 | u611090896 | 1591869779 | Python | Python (3.4.3) | py | Accepted | 17 | 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,213,097 |
s391462875 | p04044 | u939026953 | 1591841026 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | n,l=map(int,input().split())
X = []
for _ in range(n):
X.append(input())
X.sort()
print("".join(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,213,098 |
s211503676 | p04044 | u583799976 | 1591840512 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 196 | a1=input()
a2=a1.split(' ')
a3=[]
for i in range(2):
a3.append(int(a2[i]))
b1=[]
for i in range(a3[0]):
b1.append(input())
b2=sorted(b1)
s=''
for i in range(a3[0]):
s=s+b2[i]
print(s) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,099 |
s639644261 | p04044 | u706433263 | 1591839945 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 129 | n,l=map(int,input().split())
s=[input() for _ in range (n)]
s.sort()
ans=s[0]
for i in range (1,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,100 |
s779785338 | p04044 | u514118270 | 1591838236 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 125 | N,L = map(int,input().split())
S = [input() for i_ in range(N)]
S.sort()
s = S[0]
for i in range(1,N):
s += S[i]
print(s) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,101 |
s885880294 | p04044 | u168416324 | 1591813709 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 132 | n,l=map(int,input().split())
lis=[]
for i in range(n):
lis.append(input())
lis.sort()
out=""
for i in lis:
out+=i
print(out) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,102 |
s029182896 | p04044 | u548525760 | 1591764595 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 115 | N, L = map(int, input().split())
S = []
for _ in range(N):
S += [input()]
ans = "".join(sorted(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,103 |
s318867324 | p04044 | u243572357 | 1591761148 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 95 | n, m = map(int, input().split())
lst = sorted([input() for i in range(n)])
print(*lst, 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,104 |
s508550449 | p04044 | u272525952 | 1591725138 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 134 | n,l=map(int,input().split())
s=[]
for _ in range(n):
s1=input()
s.append(s1)
s=sorted(s)
ss=''
for i in s:
ss+=i
print(ss) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,105 |
s400013618 | p04044 | u896263178 | 1591704843 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 83 | n, l = map(int,input().split())
print(''.join(sorted([input() for _ in range(n)]))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,106 |
s412543940 | p04044 | u763249708 | 1591700217 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 123 | n, l = map(int, input().split())
words = []
for i in range(n):
words.append(input())
words.sort()
print("".join(words)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,107 |
s888769675 | p04044 | u736981539 | 1591691604 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 84 | n,l=map(int,input().split())
s=sorted([input() for i in range(n)])
print("".join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,108 |
s392623753 | p04044 | u382423941 | 1591678076 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 93 | n,l = map(int, input().split())
ss = [input() for _ in range(n)]
ss.sort()
print(''.join(ss)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,109 |
s705813815 | p04044 | u357751375 | 1591676814 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 120 | n,l = map(int,input().split())
s = []
g = []
for i in range(n):
s.append(input())
g = sorted(s)
print(''.join(g)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,110 |
s409026421 | p04044 | u957957759 | 1591671994 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 108 | n,l=map(int,input().split())
s=[]
for i in range(n):
s.append(input())
s=sorted(s)
x=''.join(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,213,111 |
s820864184 | p04044 | u118211443 | 1591670950 | Python | Python (3.4.3) | py | Accepted | 21 | 3064 | 310 | n, l = map(int, input().split())
a = [[] * l for i in range(n)]
for i in range(n):
I = input()
for j in range(l):
a[i].append(I[j])
# print(a)
b = a
for i in range(l-1,-1,-1):
b = sorted(b, key=lambda x: x[i])
ans = []
for i in range(n):
ans.append("".join(b[i]))
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,112 |
s656518448 | p04044 | u351892848 | 1591670014 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
print("".join(sorted(S)))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,113 |
s115869324 | p04044 | u833436666 | 1591669654 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 123 | N,L = map(int, input().split())
S = []
for _ in range(N):
S.append(input())
#print(S[1][0])
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,114 |
s502487006 | p04044 | u351892848 | 1591667726 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 109 | 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,115 |
s712874589 | p04044 | u217814585 | 1591642451 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 159 | x=[int(i) for i in input().split()]
v=[]
for i in range(x[0]):
string=str(input())
v.append(string)
v.sort()
c=''
for ele in v:
c+=ele
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,116 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.