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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s104430928 | p04044 | u901341592 | 1580854822 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 136 | # coding: utf-8
num, size = map(int,input().split())
data =[]
for x in range(num):
data.append(input())
print(''.join(sorted(data))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,917 |
s788027599 | p04044 | u422267382 | 1580840993 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 408 | N,L=map(int,input().split())
S=[input() for n in range(N)]
S=sorted(S)
"""for num in range(L):
ans1=S[num]
for num2 in range(L):
ans2=S[num2]
for i in range(L):
if ans1[i]>ans2[i]:
break
elif ans1[i]==ans2[i]:
continue
else :
... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,918 |
s405100478 | p04044 | u189089176 | 1580828542 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 115 | n,l= map(int,input().split())
words = []
[words.append(input()) for i in range(n)]
print("".join(sorted(words))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,919 |
s111703469 | p04044 | u556610039 | 1580828281 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 173 | n, l = map(int, input().split())
list = []
for x in range(n):
list.append(input())
else: list.sort()
answer = ""
for id in range(n):
answer += list[id]
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,920 |
s260550865 | p04044 | u230621983 | 1580789616 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 103 | n, l = map(int, input().split())
words = [input() for _ in range(n)]
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,921 |
s980139047 | p04044 | u686230543 | 1580698922 | 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,922 |
s237336252 | p04044 | u745812846 | 1580694337 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | n, l = map(int, input().split())
s = [input() for _ in range(n)]
s.sort()
print("".join(s))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,923 |
s356003707 | p04044 | u353855427 | 1580687491 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 99 | N,L = map(int,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,924 |
s846627606 | p04044 | u506858457 | 1580662414 | Python | Python (3.4.3) | py | Accepted | 19 | 3060 | 103 | N,L=map(int,input().split())
S=[input() for i in range(N)]
#print(S)
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,925 |
s157424794 | p04044 | u998741086 | 1580627843 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 120 | #!/usr/bin/env python3
N,L = map(int, input().split())
s = [input() for _ in range(N)]
t = sorted(s)
print(''.join(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,926 |
s055855313 | p04044 | u353919145 | 1580541843 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 121 | n, l = map(int, input().split())
a = []
for i in range(n):
a.append(input())
a.sort()
for i in a:
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,927 |
s648412490 | p04044 | u089230684 | 1580540800 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 132 | n,l=map(int,input().split())
words=[]
for i in range(n):
words.append(input())
words.sort()
for i in words:
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,928 |
s898106223 | p04044 | u863370423 | 1580540675 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 121 | m,n = map(int,input().split())
k = ''
l = []
for _ in range(m):
s = input()
l.append(s)
l.sort()
print(k.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,929 |
s105787855 | p04044 | u089230684 | 1580540298 | Python | Python (3.4.3) | py | Accepted | 16 | 3060 | 132 | n,m = map(int , input().split())
li=[]
for i in range(n):
li.append(input())
li=sorted(li)
st=''
for e in li:
st=st+e
print(st) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,930 |
s724655716 | p04044 | u018679195 | 1580540019 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 124 | arr=[]
a=list(map(int,input().split(" ")))
for i in range(0,a[0]):
arr.append(input())
ar=''.join(sorted(arr))
print(ar) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,931 |
s017088119 | p04044 | u089230684 | 1580539161 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 181 | # cook your dish here
s=input()
m=s.split()
n=int(m[0]);
l=int(m[1]);
list=[]
for i in range(n):
st=input()
list.append(st)
list.sort()
for i in list:
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,932 |
s378880125 | p04044 | u353919145 | 1580538166 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 144 | n, m = list(map(int, input().split()))
s = []
for i in range(n):
s.append(input())
s.sort()
for i in range(n):
print(s[i], end = '') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,933 |
s199322072 | p04044 | u863370423 | 1580537265 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 125 | n,l=map(int,input().split())
a=[]
for i in range(n):
a.append(str(input()))
a.sort()
ans=''
for i in a:
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,934 |
s083479000 | p04044 | u608585697 | 1580526587 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 281 | # AtCoder Beginner Contest 042
# B - 文字列大好きいろはちゃんイージー / Iroha Loves Strings (ABC Edition)
N, L = map(int, input().split())
S = ['' for i in range(N)]
for i in range(N):
S[i] = input()
S.sort()
for i in range(N):
print(S[i], end='')
print('') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,935 |
s873475543 | p04044 | u868701750 | 1580510844 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 93 | 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,936 |
s363380229 | p04044 | u934868410 | 1580509205 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | n,l = map(int, input().split())
s = sorted([input() for i in range(n)])
print(''.join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,937 |
s670590520 | p04044 | u478888559 | 1580508688 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 106 | N, L = map(int, input().split())
S = [input() for i in range(N)]
S.sort()
str = ''.join(S)
print(str)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,938 |
s332998843 | p04044 | u445404615 | 1580507210 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 117 | n,l = map(int,input().split())
s = [input() for _ in range(n)]
s.sort()
ans = ''
for i in s:
ans += i
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,939 |
s255948987 | p04044 | u287880059 | 1580356334 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 102 | 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,940 |
s930672191 | p04044 | u081475068 | 1580354426 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 123 | N, L = map(int, input().split())
result = []
for i in range(N):
result.append(input())
print("".join(sorted(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,941 |
s760317847 | p04044 | u682997551 | 1580352751 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 102 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
ans = sorted(S)
print(''.join(ans)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,942 |
s322989770 | p04044 | u113971909 | 1580337505 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | n,l=map(int,input().split())
sl=[input() for i in range(n)]
sl.sort()
print(''.join(sl))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,943 |
s151438517 | p04044 | u354847446 | 1580332313 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 272 | import math
#n, a, b= map(int, input().split())
n, l = map(int, input().split())
#h = list(map(int, input().split()))
#s = list(str(input()))
#n = int(input())
a = [""]*n
for i in range(n):
a[i] = str(input())
#for i in range(n):
a.sort()
a = ''.join(a)
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,944 |
s146341147 | p04044 | u264681142 | 1580327462 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 124 | H, W = map(int, input().split())
S = []
for _ in range(H):
S.append(input())
S.sort()
result = ''.join(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,945 |
s596582915 | p04044 | u890183245 | 1580274598 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 156 | N, L = map(int, input().split())
L = []
for i in range (N):
S = str(input())
L.append(S)
Ls = sorted(L)
oneLinerString="".join(Ls)
print(oneLinerString) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,946 |
s621208096 | p04044 | u207359046 | 1580274393 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
S.sort()
print("".join(S))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,947 |
s238689347 | p04044 | u711626986 | 1580237572 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 103 | n,l=map(int,input().split())
s=list(input() for _ in range(n))
s.sort()
result=''.join(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,948 |
s226472817 | p04044 | u857070771 | 1580217046 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 103 | n,l=map(int,input().split())
s=list(input() for _ in range(n))
s.sort()
result=''.join(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,949 |
s685853487 | p04044 | u984276646 | 1580154235 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 116 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
S.sort()
for _ in range(N):
print(S[_], end = '') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,950 |
s267568374 | p04044 | u541114911 | 1580138142 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 167 | in_len = input().split(" ")
in_n = int(in_len[0])
in_l = int(in_len[1])
in_s = []
for i in range(in_n):
in_s.append(input())
srt = sorted(in_s)
print("".join(srt)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,951 |
s722339751 | p04044 | u538568153 | 1580098683 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | n, l = map(int,input().split())
li = sorted([input() for i in range(n)])
print(*li, 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,952 |
s841521973 | p04044 | u665598835 | 1580081590 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | N, L = [int(i) for i in input().split(" ")]
S = "".join(sorted([input() for i in range(N)]))
print(S) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,953 |
s948043145 | p04044 | u182898140 | 1580072539 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 118 | n,l=map(int,input().split())
list=[]
for i in range(n):
list.append(str(input()))
list.sort()
print("".join(list)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,954 |
s876566990 | p04044 | u437860615 | 1580066302 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 114 | n, l = map(int, input().split())
st = []
for _ in range(n):
st.append(str(input()))
st.sort()
print("".join(st)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,955 |
s975033731 | p04044 | u437860615 | 1580066196 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 122 | N, L = map(int, input().split())
list=[]
for i in range(N):
list.append(str(input()))
list.sort()
print("".join(list)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,956 |
s645608917 | p04044 | u199290844 | 1580063510 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 187 | def getInput():
return [i for i in input().rstrip().split(' ')]
N, L = map(int, getInput());
lst = []
for i in range(N):
lst.append(getInput()[0])
lst.sort()
print(''.join(lst)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,957 |
s605765073 | p04044 | u421499233 | 1580048632 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | N, L = map(int,input().split())
s = [input() for i in range(N)]
s.sort()
print("".join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,958 |
s119551340 | p04044 | u686036872 | 1580016577 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 122 | N, L = map(int, input().split())
list=[]
for i in range(N):
list.append(str(input()))
list.sort()
print("".join(list)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,959 |
s938863626 | p04044 | u557792847 | 1579984409 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 204 | import sys
# N L 文字列数と文字列長
n, l = map(int, input().split())
s = []
# S1, S2 ... Sn
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,960 |
s569347244 | p04044 | u858436319 | 1579925837 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 143 | N,L = map(int, input().split())
list = []
for i in range(N):
list.append(input())
list.sort()
for j in range(N):
print(list[j], 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,961 |
s268612060 | p04044 | u677121387 | 1579900042 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | 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,962 |
s537851131 | p04044 | u241159583 | 1579808618 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
S.sort()
print("".join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,963 |
s047210060 | p04044 | u329049771 | 1579806022 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | n, l = map (int, input().split())
s = sorted([input() for i in range(n)])
print(*s, sep='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,964 |
s336613126 | p04044 | u096601595 | 1579799267 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 143 | N,L = map(int,input().split())
li =[]
for i in range(N):
li.append(input())
li.sort()
lo = ""
for i in li:
lo += i
print(lo) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,965 |
s844862282 | p04044 | u790048565 | 1579780194 | Python | Python (3.4.3) | py | Accepted | 18 | 3064 | 264 | ins = list(map(int, input().split()))
N = ins[0]
L = ins[1]
Ss = []
for i in range(N):
Ss.append(input())
for i, a in enumerate(Ss):
key = a
j = i - 1
while j >= 0 and Ss[j] > a:
Ss[j + 1] = Ss[j]
j = j - 1
Ss[j + 1] = key
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,966 |
s743925664 | p04044 | u790048565 | 1579779973 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 123 | N, L = map(int, input().split())
S = []
for i in range(N):
line = input()
S.append(line)
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,967 |
s288368035 | p04044 | u649915042 | 1579772020 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 186 | n, l = map(int, input().split())
s = []
for i in range(n):
s.append(input())
s.sort()
for i in range(n):
if i == n - 1:
print(s[i])
else:
print(s[i], end="")
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,968 |
s765655701 | p04044 | u010090035 | 1579757696 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | 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,969 |
s375917992 | p04044 | u698197687 | 1579742430 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 346 | def order_sentence(args_num, arg_sentence_length, args_list):
ordered_sentence = "".join(sorted(args_list))
return ordered_sentence
if __name__=='__main__':
args_num, arg_sentence_length = map(int, input().split())
args_list = [input() for i in range(args_num)]
print(order_sentence(args_num, arg_se... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,970 |
s410617616 | p04044 | u995062424 | 1579740209 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 109 | 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,971 |
s231949176 | p04044 | u053699292 | 1579736747 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 153 | if __name__ == '__main__':
Ss = []
N, L = map(int, input().split())
for i in range(0,N):
Ss.append(input())
Ss.sort()
Ss = ''.join(Ss)
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,972 |
s774844688 | p04044 | u344959886 | 1579728325 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 87 | n,l=map(int,input().split())
s= [input() for i in range(n)]
s.sort()
print(''.join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,973 |
s765939402 | p04044 | u696831348 | 1579711478 | 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,974 |
s960759515 | p04044 | u606043821 | 1579664271 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 159 | N,L = map(int,input().split())
S = []
ans = ""
for i in range(N):
S.append(input())
L = sorted(S)
for i in range(len(L)):
ans = 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,975 |
s053993310 | p04044 | u071868443 | 1579587915 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 162 | N, L = map(int, input().split())
strs = [[]] * N
for i in range(N):
strs[i] = str(input())
strs.sort()
x = strs[0]
for j in range(1,N):
x += strs[j]
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,976 |
s272762020 | p04044 | u047294789 | 1579583483 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 91 | 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,977 |
s709484631 | p04044 | u411255472 | 1579573052 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | n, l = map(int, input().split())
s = sorted([input() for i in range(n)])
print(*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,978 |
s273941778 | p04044 | u989345508 | 1579554800 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 86 | 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,979 |
s094317256 | p04044 | u906481659 | 1579551624 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 151 | N, L = map(int, input().split())
Y = []
for i in range(N):
S = str(input())
Y.append(S)
Z = sorted(Y)
U = str()
for j in Z:
U += j
print(U) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,980 |
s652869820 | p04044 | u690037900 | 1579436476 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | a,b = map(int,input().split())
c = sorted(list(input() for i in range(a)))
print("".join(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,981 |
s031678707 | p04044 | u314089899 | 1579406611 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 185 | #042c
N,L = map(int, input().split())
S_list = []
for i in range(N):
S = str(input())
S_list.append(S)
S_list.sort(reverse=False)
#print(S_list)
print(''.join(map(str,S_list))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,982 |
s993472396 | p04044 | u909851424 | 1579399544 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 132 | n, l = map(int, input().split())
s = []
sort = []
for i in range(n):
# print(i)
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,983 |
s485361447 | p04044 | u871596687 | 1579378723 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | N,L = map(int,input().split())
s = [str(input()) for i in range(N)]
p = sorted(s)
print("".join(p))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,984 |
s847863072 | p04044 | u106342872 | 1579363639 | Python | Python (3.4.3) | py | Accepted | 21 | 3316 | 172 | arr = input().split()
n = int(arr[0])
l = int(arr[1])
s = []
for i in range(n):
s.append(str(input()))
s.sort()
ans = ''
for i in range(n):
ans += s[i]
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,985 |
s305789765 | p04044 | u273010357 | 1579322348 | 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,986 |
s113466869 | p04044 | u513434790 | 1579306435 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 119 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
S.sort()
ans = ""
for i in S:
ans += i
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,987 |
s288662185 | p04044 | u548303713 | 1579290345 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 121 | n,l=map(int,input().split())
word=[]
for i in range(n):
word.append(input())
word2=sorted(word)
print("".join(word2)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,988 |
s288032400 | p04044 | u809827093 | 1579275095 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 184 | NL = input().split()
N = int(NL[0])
strList = []
for i in range(N):
strList.append(input())
strList.sort()
strLong = ''
for i in range(N):
strLong += strList[i]
print(strLong)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,989 |
s169274276 | p04044 | u983181637 | 1579243966 | Python | Python (3.4.3) | py | Accepted | 20 | 3060 | 113 | N, K = [int(x) for x in input().split()]
a = []
for _ 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,990 |
s622255906 | p04044 | u638006405 | 1579224432 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 128 | inputs = input().split(' ')
n, l = int(inputs[0]), int(inputs[1])
s_n = [input()for i in range(n)]
print(('').join(sorted(s_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,991 |
s847478032 | p04044 | u050876787 | 1579218343 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 120 | ss = []
n, l = list(map(int, input().split()))
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,992 |
s450923036 | p04044 | u779170803 | 1579215743 | Python | Python (3.4.3) | py | Accepted | 20 | 3064 | 377 | INT = lambda: int(input())
INTM = lambda: map(int,input().split())
STRM = lambda: map(str,input().split())
STR = lambda: str(input())
LIST = lambda: list(map(int,input().split()))
LISTS = lambda: list(map(str,input().split()))
def do():
n,l=INTM()
s=[]
for i in range(n):
s.append(STR())
s.sort()... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,993 |
s051844749 | p04044 | u293459994 | 1579177397 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 165 | a = input().split()
n= a[0]
l = a[1]
s = []
for i in range(int(n)):
s.append(input())
s.sort()
ret = ""
for i in range(int(n)):
ret = ret + s[i]
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,994 |
s139660160 | p04044 | u006167882 | 1579145797 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 123 | N, L = map(int,input().split())
l = []
for i in range(N):
l.append(input())
l.sort()
result = ''.join(l)
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,995 |
s684079399 | p04044 | u355865104 | 1579144415 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 207 | import os
if __name__ == "__main__":
temp = input().split(" ")
N = int(temp[0])
L = int(temp[1])
S = [0]*N
for i in range(0, N):
S[i] = 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,996 |
s507652116 | p04044 | u093683571 | 1579129105 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 93 | N,L=map(int,input().split())
s=[str(input()) for i in range(N)]
p=sorted(s)
print("".join(p)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,997 |
s638252905 | p04044 | u796877631 | 1579126649 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | n,l=map(int,input().split())
List=sorted([input() for i in range(n)])
print(*List,sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,998 |
s842153565 | p04044 | u506287026 | 1579125983 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | N, L = map(int, input().split())
chars = [input() for _ in range(N)]
print(''.join(sorted(chars)))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,999 |
s180569875 | p04044 | u846652026 | 1579117509 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 107 | n,l=map(int,input().split())
ans=[]
for _ in range(n):
ans.append(input())
print("".join(sorted(ans))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,000 |
s751743559 | p04044 | u148551245 | 1579062319 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 109 | n, l = map(int, input().split())
s = []
for i in range(n):
s.append(input())
s.sort()
print(*s, sep='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,001 |
s779376244 | p04044 | u863044225 | 1579050029 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 99 | n,l=map(int,input().split())
x=sorted([input() for i in range(n)])
s=''
for i in x:
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,214,002 |
s766865107 | p04044 | u897328029 | 1579032994 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 174 | #!/usr/bin/env python3
N, L = list(map(int, input().split()))
s_list = []
for _ in range(N):
s = input()
s_list.append(s)
ans = "".join(sorted(s_list))
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,003 |
s402768760 | p04044 | u380284234 | 1578977708 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 85 | n,l=map(int, input().split())
s=sorted([input() for i in range(n)])
print(*s, sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,004 |
s585012204 | p04044 | u671211357 | 1578967664 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 88 | N,L=map(int,input().split())
S=list(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,214,005 |
s298866904 | p04044 | u225388820 | 1578967471 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | n,l=map(int,input().split())
a=sorted([input() for i in range(n)])
t=""
for i in a:
t+=i
print(t) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,006 |
s437563443 | p04044 | u761989513 | 1578967342 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | n, l = map(int, input().split())
s = sorted([input() for i in range(n)])
print("".join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,007 |
s616214084 | p04044 | u075012704 | 1578967323 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | N, L = map(int, input().split())
S = sorted([input() for i in range(N)])
print(''.join(S))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,008 |
s293706389 | p04044 | u485566817 | 1578961656 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 130 | n, l = map(int, input().split())
s = [input() for _ in range(n)]
ans = ""
s.sort()
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,214,009 |
s713629346 | p04044 | u609061751 | 1578941533 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 162 | import sys
input = sys.stdin.readline
N, L = [int(x) for x in input().split()]
S = []
for _ in range(N):
S.append(input().rstrip())
S.sort()
print("".join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,010 |
s960600611 | p04044 | u416735281 | 1578936197 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 83 | n, m = map(int, input().split())
print(''.join(sorted(input() for _ in range(n))))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,011 |
s269072141 | p04044 | u508405635 | 1578935582 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 116 | N, L = map(int, input().split())
S = []
for i in range(N):
S.append(input())
S.sort
print(''.join(sorted(S)))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,012 |
s249618786 | p04044 | u881116515 | 1578887067 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 88 | a,b = map(int,input().split())
c = sorted([input() for i in range(a)])
print("".join(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,214,013 |
s003786112 | p04044 | u585819925 | 1578880154 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 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,214,014 |
s637560795 | p04044 | u566297428 | 1578863524 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 109 | N,L = map(int,input().split())
list = [input() for i in range(N)]
list = sorted(list)
print(''.join(list)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,015 |
s964557562 | p04044 | u243572357 | 1578806846 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 104 | n, l = map(int, input().split())
lst = [input() for i in range(n)]
lst = sorted(lst)
print(''.join(lst)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,016 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.