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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s663163106 | p04044 | u053404471 | 1584371408 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 106 | s, l = map(int, input().split())
d = []
for _ in range(s):
d.append(input())
d.sort()
print(''.join(d)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,717 |
s377848497 | p04044 | u735654057 | 1584362825 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 107 | 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,718 |
s839123572 | p04044 | u482157295 | 1584360043 | Python | Python (3.4.3) | py | Accepted | 86 | 3188 | 553 | n,l = map(int, input().split())
s = [[""]*l for syoki in [""]*n]
flag = [["ok"]*l for syoki in ["ok"]*n]
dummy = ""
#print(s)
for i in range(n):
dummy = input()
count = 0
for q in dummy:
s[i][count] = q
count = count + 1
#文字列判定
for j in range(n):
for k in range(n-1):
for m in range(l):
if s[j... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,719 |
s104202375 | p04044 | u977490411 | 1584307457 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 125 | N, L = map(int, input().split())
ans = []
for i in range(N):
ans.append(input())
ans = sorted(ans)
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,720 |
s889595389 | p04044 | u490489966 | 1584290788 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 118 | #B
n,l=map(int,input().split())
s=[]
for i in range(n):
s.append(input())
s.sort()
for i in s:
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,721 |
s462524522 | p04044 | u288430479 | 1584281785 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 111 | N,L = map(int,input().split())
l = [input() for i in range(N)]
l.sort()
for m in range(N):
print(l[m],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,722 |
s921943453 | p04044 | u299251530 | 1584223082 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 145 | n, l = map(int, input().split())
s = []
for i in range(n):
s.append(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,723 |
s324267241 | p04044 | u652569315 | 1584219923 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 77 | n,l=map(int,input().split())
print(''.join(sorted([input() for _ in [0]*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,724 |
s581588068 | p04044 | u691018832 | 1584155013 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 200 | import sys
input = sys.stdin.readline
n, l = map(int, input().split())
s = [''] * n
ans = ''
for i in range(n):
s[i] = input()
s.sort()
for i in range(n):
ans += s[i].rstrip('\n')
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,725 |
s174197833 | p04044 | u785066634 | 1584134282 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 130 | n,l=map(int,input().split())
a=[]
for i in range(n):
s=str(input())
a.append(s)
print("".join(sorted(a)))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,726 |
s928584516 | p04044 | u075433168 | 1584129814 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 106 | 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,727 |
s730025919 | p04044 | u163874353 | 1584106321 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | N, L = map(int, input().split())
l = [input() for i in range(N)]
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,728 |
s053970341 | p04044 | u663263525 | 1584083241 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 93 | n = [int(x) for x in input().split()][0]
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,729 |
s022211713 | p04044 | u526094365 | 1584063258 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 94 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
S.sort()
print(''.join(S))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,730 |
s834181783 | p04044 | u220612891 | 1584050036 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | N,L=list(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,731 |
s844150646 | p04044 | u679154596 | 1584028260 | Python | Python (3.4.3) | py | Accepted | 19 | 3060 | 134 | N , L = map(int, input().split())
list = []
for i in range(N):
list.append(input())
mojiretu = "".join(sorted(list))
print(mojiretu) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,732 |
s862958933 | p04044 | u017719431 | 1583984893 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 99 | N, S = input().split()
str_list = [input() for _ in range(int(N))]
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,733 |
s297766992 | p04044 | u465152652 | 1583976922 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 105 | num = list(map(int,input().split()))
word = [input() for i in range(num[0])]
print(''.join(sorted(word))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,734 |
s772208272 | p04044 | u051842502 | 1583974175 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 168 | N,L=map(int,input().split())
words=[]
answer=""
for n in range(0,N):
words.append(input())
words.sort()
for n in range(0,N):
answer+=words[n]
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,735 |
s337092208 | p04044 | u764401543 | 1583969470 | Python | Python (3.4.3) | py | Accepted | 21 | 3060 | 119 | n, l = list(map(int, input().split()))
lines = [input() for _ in range(n)]
lines.sort()
ans = ''.join(lines)
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,736 |
s684043978 | p04044 | u867826040 | 1583944609 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 88 | 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,737 |
s731012178 | p04044 | u267300160 | 1583935037 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 99 | N,L = map(int,input().split())
strs = [input() for i in range(N)]
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,738 |
s450764020 | p04044 | u731603651 | 1583900807 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 103 | n,l=list(map(int,input().split()))
s=[""]*n
for i in range(n):
s[i]=input()
print("".join(sorted(s))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,739 |
s998621336 | p04044 | u463775490 | 1583891291 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | n, l = map(int,input().split())
s = sorted([input() for _ in range(n)])
print(*s, sep='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,740 |
s770829778 | p04044 | u841623074 | 1583883546 | Python | Python (3.4.3) | py | Accepted | 19 | 3060 | 129 | N,L=map(int,input().split())
S=[input() for i in range(N)]
M=sorted(S,reverse=False)
s=""
for i in range(N):
s+=M[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,741 |
s718029215 | p04044 | u050087249 | 1583877954 | Python | Python (3.4.3) | py | Accepted | 19 | 3060 | 139 | num, L = list(map(int, input().split()))
a = [input() for i in range(num)]
a.sort()
for i in range(num):
print(a[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,742 |
s571436673 | p04044 | u891518152 | 1583875009 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 122 | N, L = map(int, input().split())
S = []
for i in range(N):
s = input()
S.append(s)
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,743 |
s955348651 | p04044 | u767995501 | 1583818330 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 84 | n,l=map(int,input().split())
s=sorted([input() for i in range(n)])
print("".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,744 |
s341665637 | p04044 | u936885469 | 1583808365 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 156 | n, l = map(int, input().split())
s = []
for i in range(n):
s.append(str(input()))
s = sorted(s)
sj = ''
for i in range(n):
sj += s[i]
print(sj)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,745 |
s263155966 | p04044 | u568576853 | 1583784144 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 107 | N,L=map(int,input().split())
S=[]
for i in range(N):
S.append(input())
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,746 |
s302639742 | p04044 | u771538568 | 1583784008 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 146 | a,b=map(int,(input().split()))
li=[]
for i in range(a):
li.append(input())
li2=sorted(li)
c=li2[0]
for j in range(1,a):
c+=li2[j]
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,747 |
s869349650 | p04044 | u716660050 | 1583747159 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 103 | N,L=map(int,input().split())
S=[input() for i in range(N)]
S.sort()
s=""
for i in S:
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,748 |
s451200399 | p04044 | u021916304 | 1583710108 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 108 | n, l = map(int, input().split())
s = [0]*n
for i in range(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,749 |
s820929477 | p04044 | u775912090 | 1583703971 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 105 | n, l = map(int, input().split())
s = []
for i in range(n):
s.append(input())
s.sort()
print("".join(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,750 |
s921834314 | p04044 | u106971015 | 1583690276 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 88 | 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,751 |
s356453925 | p04044 | u362771726 | 1583682817 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 122 | n, l = map(int, input().split())
s = [input() for _ in range(n)]
s.sort()
ans = ""
for v in s:
ans += v
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,752 |
s718328282 | p04044 | u992910889 | 1583682067 | Python | Python (3.4.3) | py | Accepted | 21 | 4340 | 167 | def resolve():
n,l=map(int,input().split())
S=[str(input()) for i in range(n)]
for i in sorted(S):
print(*i,sep='',end='')
print()
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,753 |
s655592652 | p04044 | u506858457 | 1583681718 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 93 | n,l=map(int,input().split())
s=sorted([input() for i in range(n)])
#print(s)
print(*s,sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,754 |
s735212064 | p04044 | u130900604 | 1583629491 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 86 | 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,755 |
s378857714 | p04044 | u271752821 | 1583622187 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 131 | import sys
n, l = map(int, input().split(" "))
lis = sys.stdin.readlines()
lis.sort()
for i in lis:
print(i.rstrip(), 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,756 |
s720822395 | p04044 | u071361440 | 1583567286 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 95 | n,l=map(int,input().split())
text=[input() for i in range(n)]
text.sort()
print("".join(text))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,757 |
s230681826 | p04044 | u071361440 | 1583567094 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | n,l=map(int,input().split())
text=[input() for i in range(n)]
print("".join(sorted(text))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,758 |
s557211193 | p04044 | u465152652 | 1583559544 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 102 | n = list(map(int,input().split()))
word = [input() for i in range(n[0])]
print(''.join(sorted(word)))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,759 |
s600676745 | p04044 | u896791216 | 1583550320 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 112 | n, l = map(int, input().split())
s = [input() for _ in range(n)]
ordered_s = sorted(s)
print("".join(ordered_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,760 |
s119421282 | p04044 | u414699019 | 1583527032 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 106 | N,L=map(int,input().split())
S=[]
for i in range(N):
S.append(str(input()))
S.sort()
print(''.join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,761 |
s686053780 | p04044 | u071002307 | 1583524405 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 113 | N, L = map(int, input().split())
S = []
for x 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,762 |
s288886813 | p04044 | u071002307 | 1583524342 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 132 | N, L = map(int, input().split())
ans = []
for i in range(N):
A = input()
ans.append(A)
ans = sorted(ans)
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,763 |
s244761873 | p04044 | u620238824 | 1583475172 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 99 | N,L = map(int, input().split())
S = list(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,764 |
s914815187 | p04044 | u606523772 | 1583451751 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 132 | N, L = map(int, input().split())
ans = []
for i in range(N):
A = input()
ans.append(A)
ans = sorted(ans)
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,765 |
s818070579 | p04044 | u680851063 | 1583435030 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 83 | n,l=input().split()
x = [input() for _ in range(int(n))]
print(''.join(sorted(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,766 |
s533386729 | p04044 | u453683890 | 1583424890 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 156 | line = input().split(' ')
N = int(line[0])
L = int(line[1])
List = []
for i in range(N):
List.append(input())
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,767 |
s772963730 | p04044 | u422272120 | 1583385459 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 116 | m,n = map(int,input().split())
s = []
for _ in range(m):
s.append(input())
s.sort()
print(''.join(map(str, s)))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,768 |
s179144014 | p04044 | u705007443 | 1583385412 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 342 | n,l=map(int,input().split())
dic={}
for i in range(n):
text=input()
if text[0] not in dic:
dic[text[0]]=[text]
else:
dic[text[0]].append(text)
for i in dic:
dic[i]=sorted(dic[i])
dic=sorted(dic.values())
for i in dic:
try:
for j in i:
print(j,end='')
except:
... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,769 |
s369883470 | p04044 | u126887629 | 1583377698 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 93 | n, l = map(int, input().split())
sl = sorted([input() for _ in range(n)])
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,770 |
s690144540 | p04044 | u256833330 | 1583376955 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 87 | n,l=map(int,input().split())
sl=sorted([input() for _ in range(n)])
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,771 |
s967103523 | p04044 | u337820403 | 1583364663 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 84 | n, l = map(int, input().split())
print("".join(sorted([input() for i in range(n)]))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,772 |
s841027762 | p04044 | u393881437 | 1583338307 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 144 | N, L = list(map(int, input().split()))
s = [input() for i in range(N)]
s.sort()
result = ''
for i in range(N):
result += s[i]
print(result)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,773 |
s420127286 | p04044 | u077898957 | 1583335021 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 88 | n,l = map(int,input().split())
S = sorted([input() for i in range(n)])
print(*S,sep='')
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,774 |
s355497362 | p04044 | u000123984 | 1583280922 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 134 | n,l = map(int, input().split())
Li = []
i = 0
while i<n:
Li.append("".join(input()))
i += 1
else:
Li.sort()
print("".join(Li)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,775 |
s723101384 | p04044 | u480038302 | 1583270615 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 83 | n,l=map(int,input().split())
s=sorted([input() for i in range(n)])
print(*s,sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,776 |
s721037105 | p04044 | u829796346 | 1583270461 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 102 | N,L = map(int,input().split())
s = []
for i in range(N):
s.append(input())
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,777 |
s733019420 | p04044 | u968649733 | 1583253168 | 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,778 |
s720875017 | p04044 | u738341948 | 1583232988 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 140 | n,l = map(int ,input().strip().split())
s = [""]*n
for i in range(n):
s[i]=input()
s.sort()
sol = ""
for i in s:
sol += i
print(sol) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,779 |
s799539339 | p04044 | u428132025 | 1583217150 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 137 | n, l = map(int, input().split())
s = [''] * n
for i in range(n):
s[i] = input()
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,780 |
s574448454 | p04044 | u004423772 | 1583214455 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 148 | import sys
input = sys.stdin.readline
n, l = map(int, input().split(' '))
s = [input().rstrip('\r\n') 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,781 |
s383598836 | p04044 | u263824932 | 1583209112 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | N,L=map(int,input().split())
S=[input() for n in range(N)]
S.sort()
T=''.join(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,782 |
s946463889 | p04044 | u970197315 | 1583207677 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 111 | n,l=map(int,input().split())
s=[input() for i in range(n)]
s.sort()
ans=''
for ss in s:
ans+=ss
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,783 |
s254326412 | p04044 | u159975271 | 1583204753 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 119 | N, L = list(map(int,input().split()))
S = [input() for i in range(N)]
str1 = sorted(S)
str2 = ''.join(str1)
print(str2) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,784 |
s622419626 | p04044 | u850087201 | 1583204005 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 137 | n = input().split()
N = int(n[0])
L = int(n[1])
a = []
for i in range(N):
b = input()
a.append(b)
A = sorted(a)
print(''.join(A)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,785 |
s541879360 | p04044 | u814986259 | 1583201294 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 93 | N, L = map(int, input().split())
S = [input() for i in range(N)]
S.sort()
print("".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,786 |
s223421086 | p04044 | u738322459 | 1583200219 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 171 | lst = []
n, l = map(int, input().split())
for _ in range(n):
lst.append(input())
res = ""
for i in range(n):
res += min(lst)
lst.remove(min(lst))
print(res) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,787 |
s288216570 | p04044 | u607074939 | 1583193237 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 133 | N,L = map(int, input().split())
s = [str(input()) for i in range (N)]
s.sort()
ans = ''
for i in range(N):
ans += s[i]
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,788 |
s765787023 | p04044 | u923270446 | 1583189264 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 116 | n, l = map(int, input().split())
S = [input() for i in range(n)]
sorted_list = sorted(S)
print(*sorted_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,789 |
s193184061 | p04044 | u744034042 | 1583181189 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | 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,790 |
s608514011 | p04044 | u241159583 | 1583153110 | Python | Python (3.4.3) | py | Accepted | 18 | 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,791 |
s789107177 | p04044 | u981931040 | 1583153042 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 94 | N, L = map(int,input().split())
S = list(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,792 |
s406422503 | p04044 | u527993431 | 1583152865 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 133 | N,L=map(int,input().split())
S=[]
for i in range (N):
S.append(input())
K=sorted(S)
for i in range (N):
print(K[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,793 |
s560504353 | p04044 | u079022693 | 1583152774 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 174 | def main():
N,L=map(int,input().split())
S=[]
for _ in range(N):
S.append(input())
S.sort()
print("".join(S))
if __name__=="__main__":
main() | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,794 |
s377475837 | p04044 | u186838327 | 1583152463 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 216 | n, l = map(int, input().split())
L = [[0, 0] for _ in range(n)]
for i in range(n):
s = str(input())
L[i][0] = s[0]
L[i][1] = s
L.sort()
#print(L)
ans = ''
for i in range(n):
ans += L[i][1]
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,795 |
s252025760 | p04044 | u241159583 | 1583152423 | Python | Python (3.4.3) | py | Accepted | 18 | 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,796 |
s099119835 | p04044 | u287500079 | 1583152416 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 148 | n,l = map(int,input().split())
s = []
for _ 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,797 |
s013900879 | p04044 | u977661421 | 1583152414 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 164 | # -*- coding: utf-8 -*-
n, l = map(int,input().split())
s = []
for i in range(n):
s.append(str(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,798 |
s544897845 | p04044 | u312025627 | 1583152401 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 168 | def main():
N, K = (int(i) for i in input().split())
A = [input() for i in range(N)]
A.sort()
print("".join(A))
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,799 |
s670655792 | p04044 | u561083515 | 1583152379 | 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(*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,800 |
s135354221 | p04044 | u242031676 | 1583152358 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 59 | n, l, *s = open(0).read().split()
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,801 |
s488673867 | p04044 | u238605674 | 1583112332 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 136 | I=input().split()
N=int(I[0])
L=int(I[1])
s=[]
for _ in range(N):
s.append(input())
s.sort()
all=""
for i in s:
all+=i
print(all) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,802 |
s862326689 | p04044 | u566428756 | 1583106496 | 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,803 |
s053639364 | p04044 | u634079249 | 1583094262 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 290 | import sys
import os
def main():
if os.getenv("LOCAL"):
sys.stdin = open("input.txt", "r")
N, L = list(map(int, sys.stdin.readline().split()))
S = sorted([line.rstrip() for line in sys.stdin.readlines()])
print(*S, sep="")
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,804 |
s904315250 | p04044 | u054514819 | 1583094208 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 96 | N, L = map(int, input().split())
strs = sorted([input() for _ 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,805 |
s669250809 | p04044 | u721425712 | 1583091586 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 160 | # B 2020/03/01 14:38-
n, l = map(int, input().split())
s = []
for i in range(n):
S = input()
s.append(S)
s.sort()
for j in s:
print(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,806 |
s676659089 | p04044 | u844813573 | 1583026707 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 170 | line = input()
n,l = line.split(" ")
str_list = []
for i in range(int(n)):
word = input()
str_list.append(word)
str_list.sort()
ans = "".join(str_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,807 |
s701655630 | p04044 | u883040023 | 1583015287 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 131 | n,l = map(int,input().split())
s = sorted([input() for i in range(n)])
ans = ""
for i in range(n):
ans += s[i]
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,808 |
s554790644 | p04044 | u579832365 | 1582989056 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 198 | from struct import *
def fun(dct):
print(*dct)
N,L = list(map(int, input().split()))
S=[list(map(str,input().split())) for i in range(N)]
dct = sorted(S)
for a in dct:
print(*a, 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,809 |
s487687527 | p04044 | u086503932 | 1582943506 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 83 | N, L = map(int,input().split())
print(''.join(sorted([input() for i in range(N)]))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,810 |
s366769955 | p04044 | u620084012 | 1582926125 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 222 | import sys, math
def input():
return sys.stdin.readline()[:-1]
def main():
N, L = map(int,input().split())
S = [input() for k in range(N)]
print("".join(sorted(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,811 |
s364146063 | p04044 | u556589653 | 1582925665 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 151 | N,L = map(int,input().split())
k = []
ans = ""
for i in range(N):
S = input()
k.append(S)
k.sort()
for i in range(len(k)):
ans += k[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,812 |
s143665836 | p04044 | u629557958 | 1582923645 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 91 | n, l = map(int, input().split())
a = [input() for _ in range(n)]
a.sort()
print("".join(a)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,813 |
s902330643 | p04044 | u595289165 | 1582921643 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | n, l = map(int, input().split())
a = [input() for _ in range(n)]
a.sort()
print("".join(a)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,814 |
s725414088 | p04044 | u139112865 | 1582870095 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | #042_B
n,l=map(int,input().split())
s=[input() for _ in range(n)]
s.sort()
print(*s,sep='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,815 |
s548211807 | p04044 | u139112865 | 1582870021 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | #042_B
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,816 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.