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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s669375650 | p04044 | u724687935 | 1587872752 | 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(*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,417 |
s135908542 | p04044 | u941794834 | 1587869347 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 93 | n, l = map(int, input().split())
a = [input() for i in range(n)]
a.sort()
print("".join(a)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,418 |
s441243152 | p04044 | u261700262 | 1587868241 | Python | Python (3.4.3) | py | Accepted | 19 | 3060 | 105 | N, L = map(int, input().split())
table = [input() for _ in range(N)]
table.sort()
print("".join(table))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,419 |
s514865612 | p04044 | u614984376 | 1587868140 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 108 | n,l=map(int,input().split())
s=[input() for i in range(n)]
s.sort()
ans=""
for i in s:
ans+=i
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,420 |
s935252203 | p04044 | u404290207 | 1587861339 | Python | Python (3.4.3) | py | Accepted | 36 | 5164 | 1,289 | import sys
sys.setrecursionlimit(10**6)
from math import floor,ceil,sqrt,factorial,log
from heapq import heappop, heappush, heappushpop
from collections import Counter,defaultdict,deque
from itertools import accumulate,permutations,combinations,product,combinations_with_replacement
from bisect import bisect_left,bisect... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,421 |
s484888635 | p04044 | u032484849 | 1587852352 | 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,422 |
s821356324 | p04044 | u625495026 | 1587827715 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 88 | 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,423 |
s009391034 | p04044 | u151785909 | 1587796863 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | n , l = map(int, input().split())
x = [input() for i in range(n)]
x.sort()
print("".join(x)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,424 |
s022617876 | p04044 | u115877451 | 1587788677 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 84 | a,b=map(int,input().split())
n=sorted([input() for i in range(a)])
print(*n,sep='')
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,425 |
s252651943 | p04044 | u390762426 | 1587784914 | 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,426 |
s123556419 | p04044 | u981767024 | 1587783803 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 180 | # 2020/04/24
# AtCoder Beginner Contest 042 - B
# Input
n, l = map(int,input().split())
s = list()
for i in range(n):
s.append(input())
s.sort()
# Output
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,427 |
s531262733 | p04044 | u940780117 | 1587782859 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 149 | N,L=map(int,input().split())
strings=[]
ans=''
strings=[input() for i in range(N)]
strings.sort()
for i in range(N):
ans = ans+strings[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,428 |
s004052902 | p04044 | u308918401 | 1587781652 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 127 | n,l=map(int,input().split())
a=[]
for i in range(n):
a.append(input())
b=sorted(a)
t=""
for i in range(n):
t+=b[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,213,429 |
s376949826 | p04044 | u011062360 | 1587755912 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 139 | n, l = map(int, input().split())
list_S = [input("") for _ in range(n)]
list_S.sort()
ans = str()
for s in list_S:
ans += s
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,430 |
s846356807 | p04044 | u760391419 | 1587753099 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
print("".join(sorted(S))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,431 |
s927506865 | p04044 | u189479417 | 1587752682 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 106 | 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,432 |
s590348629 | p04044 | u744054041 | 1587745675 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 148 | def main(input: list):
print("".join(sorted(input)))
[N, L] = list(map(int, input().split()))
input = [input() for _ in range(N)]
main(input)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,433 |
s726094915 | p04044 | u390762426 | 1587728896 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 84 | n,l=map(int,input().split())
s=sorted([input() for i in range(n)])
print("".join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,434 |
s998931469 | p04044 | u735335967 | 1587683680 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 130 | n, l = map(int, input().split())
s = [input() for i in range(n)]
s.sort()
ans = ""
for i in range(n):
ans += s[i]
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,435 |
s036698918 | p04044 | u655622461 | 1587670521 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 112 | N, Z = map(int, input().split())
list1 = [input() for _ in range(N)]
list2 = sorted(list1)
print(''.join(list2)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,436 |
s404910139 | p04044 | u437215432 | 1587659025 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 109 | n, l = map(int, input().split())
s = [0] * 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,437 |
s101851584 | p04044 | u306516971 | 1587657917 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 98 | N, L = map(int, input().split())
S = [input() for i in range(N)]
S = sorted(S)
print(*S, sep = "") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,438 |
s742903685 | p04044 | u898999125 | 1587656080 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 108 | n, l=map(int, input().split())
s=[input() for _ in range(n)]
s.sort()
print(''.join(s[i] 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,439 |
s936324335 | p04044 | u896741788 | 1587651990 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 76 | n,k=input().split();print("".join(sorted([input() for i in range(int(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,440 |
s210932790 | p04044 | u886747123 | 1587615989 | 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,441 |
s333379481 | p04044 | u989306199 | 1587615269 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | n, l = map(int, input().split())
s = sorted([input() for i in range(n)])
print("".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,442 |
s980548367 | p04044 | u989306199 | 1587615248 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 90 | n, l = map(int, input().split())
s = sorted([input() for i in range(n)])
print(*s, sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,443 |
s577692092 | p04044 | u068750695 | 1587590043 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 88 | n,l=map(int,input().split())
a=[input() for i in range(n)]
a=sorted(a)
print(*a,sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,444 |
s952413754 | p04044 | u863442865 | 1587569427 | Python | Python (3.4.3) | py | Accepted | 21 | 3316 | 620 | def main():
import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**7)
from collections import Counter, deque
#from collections import defaultdict
from itertools import combinations, permutations, accumulate, groupby, product
from bisect import bisect_left,bisect_right
from heapq... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,445 |
s137942352 | p04044 | u832399163 | 1587566531 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 174 | from sys import stdin
import math
[N, L] = list(map(int, stdin.readline().rstrip().split()))
S = [input() for i in range(N)]
S_sorted = sorted(S)
print(''.join(S_sorted))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,446 |
s481764588 | p04044 | u941022948 | 1587523598 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 136 | a,b=map(int,input().split())
s=['']*a
ans=''
for i in range(a):
s[i]=input()
s.sort()
for i in range(a):
ans=ans+s[i]
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,447 |
s579174737 | p04044 | u326943507 | 1587519296 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 109 | N,L=map(int,input().split())
X=[]
for i in range(N):
Y=input()
X.append(Y)
X.sort()
print("".join(X)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,448 |
s693567054 | p04044 | u985125584 | 1587504515 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 167 | N, L = map(int, input().split())
S = []
ans = ''
for i in range(N):
S.append(input())
for i in range(N):
ans += min(S)
del S[S.index(min(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,449 |
s273483177 | p04044 | u519923151 | 1587492996 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 191 | N,L = (int(x) for x in input().split())
alist = [input() for i in range(N)]
newlist = sorted(alist)
res = ""
for i in newlist:
res = res + newlist[0]
newlist = newlist[1:]
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,450 |
s171223114 | p04044 | u645436608 | 1587474457 | Python | Python (3.4.3) | py | Accepted | 20 | 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,451 |
s651967039 | p04044 | u869265610 | 1587445250 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 116 | a,b = map(int,input().split())
L=[]
for i in range(a):
L.append(input())
K=sorted(L)
print(''.join(K))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,452 |
s764503860 | p04044 | u203898698 | 1587441063 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 107 | N, L=map(int, input().split())
s=[]
for i in range(N):
s.append(input())
s.sort()
st=''.join(s)
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,453 |
s060286418 | p04044 | u901598613 | 1587440084 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | N,L=map(int,input().split())
l = [input() for _ in range(N)]
l.sort()
for i in l:
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,454 |
s388753605 | p04044 | u494748969 | 1587435096 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 130 | N, L = map(int, input().split())
s = []
for i in range(N):
s.append(input())
new_list = sorted(s)
print(''.join(new_list))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,455 |
s700595806 | p04044 | u114641312 | 1587427119 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 914 | # from math import factorial,sqrt,ceil,gcd
# from itertools import permutations as permus
# from collections import deque,Counter
# import re
# from functools import lru_cache # 簡単メモ化 @lru_cache(maxsize=1000)
# from decimal import Decimal, getcontext
# # getcontext().prec = 1000
# # eps = Decimal(10) ** (-100)
# impor... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,456 |
s681705309 | p04044 | u951289777 | 1587425374 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 140 | num, len = map(int, input().split())
strings = []
for n in range(num):
strings.append(input())
strings.sort()
print(''.join(strings)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,457 |
s617040653 | p04044 | u884323674 | 1587418140 | Python | Python (3.4.3) | py | Accepted | 19 | 3060 | 148 | N, L = map(int, input().split())
S = [input() for i in range(N)]
sorted_S = sorted(S)
result = ""
for i in sorted_S:
result += 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,458 |
s855018953 | p04044 | u810978770 | 1587396733 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 110 | 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,459 |
s095167915 | p04044 | u171803978 | 1587367978 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 151 | n, l = map(int, input().split())
array = [input() for _ in range(n)]
array.sort()
result = ''.join(array)
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,460 |
s905328551 | p04044 | u652656291 | 1587347660 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 94 | n,l = map(int,input().split())
L =[input() for i in range(n)]
L.sort()
s = ''.join(L)
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,461 |
s747398951 | p04044 | u538537141 | 1587340040 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 109 | N,L =input().split()
listA=[]
for i in range(int(N)):
listA.append(input())
print(*sorted(listA),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,462 |
s953528864 | p04044 | u951289777 | 1587334934 | Python | Python (3.4.3) | py | Accepted | 19 | 3064 | 410 |
n_and_l = input()
n, l = map(int, n_and_l.split())
text = []
for num in range(0, n):
text.append(input())
for object in range(1, n):
for compare in range(0, object):
if text[object] < text[compare]:
tmp = text[object]
text[object] = text[compare]
text[compare] ... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,463 |
s270241338 | p04044 | u441526315 | 1587334444 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 114 | n, l = map(int, input().split())
s=[]
for _ in range(n):
l=input()
s.append(l)
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,464 |
s857951958 | p04044 | u560557614 | 1587334042 | 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(*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,465 |
s590544425 | p04044 | u994307795 | 1587323536 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 87 | n, l = map(int, input().split())
s = [input() for _ in [0]*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,466 |
s330572515 | p04044 | u105124953 | 1587267173 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 133 | n,l = map(int,input().split())
li = []
for _ in range(n):
li.append(input())
li.sort()
ss = ''
for l in li:
ss += l
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,467 |
s379897902 | p04044 | u796842765 | 1587258034 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 112 | N, L = map(int, input().split())
S = [input() for _ in range(N)]
S.sort()
A = ""
for a in S:
A += 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,468 |
s210768955 | p04044 | u579699847 | 1587250500 | Python | Python (3.4.3) | py | Accepted | 34 | 3888 | 323 | import bisect,collections,copy,heapq,itertools,math,operator,string
def I(): return int(input())
def S(): return input()
def LI(): return list(map(int,input().split()))
def LS(): return list(input().split())
##################################################
N,L = LI()
S = sorted([S() 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,469 |
s506241146 | p04044 | u879266613 | 1587248554 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 106 | N,L = map(int,input().split())
S = [input() for _ in range(N)]
S.sort()
for s in S:
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,470 |
s959246039 | p04044 | u697386253 | 1587240860 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 149 | n,l = map(int, input().split())
s = []
for i in range(n):
s.append(input())
s.sort()
ans = s[0]
for i in range(1,n):
ans += s[i]
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,471 |
s382352846 | p04044 | u383450070 | 1587215881 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 155 | N,L=map(int, input().split())
lst = []
ans = ""
for i in range(N):
lst.append(str(input()))
lst.sort()
for j in range(N):
ans += str(lst[j])
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,472 |
s154291178 | p04044 | u108597410 | 1587175121 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 110 | n,m = map(int,input().split())
List = [input() for i in range(n)]
List2 = sorted(List)
print("".join(List2))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,473 |
s300642388 | p04044 | u353919145 | 1587171398 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 103 | n, l = map(int, input().split())
s = [input() for i in range(n)]
s_s = sorted(s)
print("".join(s_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,474 |
s741726494 | p04044 | u353919145 | 1587168503 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | n,l = map(int,input().split())
s = [input() for i in range(n)]
s_s = sorted(s)
print("".join(s_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,475 |
s326719150 | p04044 | u301624971 | 1587145101 | Python | Python (3.4.3) | py | Accepted | 18 | 3064 | 306 |
def myAnswer(N:int,L:int,S:list)->str:
S.sort()
ans = ""
for s in S:
ans+=s
return ans
def modelAnswer():
tmp=1
def main():
N,L=map(int,input().split())
S =[]
for _ in range(N):
S.append(str(input()))
print(myAnswer(N,L,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,476 |
s854553047 | p04044 | u506549878 | 1587132929 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 111 | n, k =map(int,input().split())
data = [str(input()) for i in range(n)]
data = sorted(data)
print(''.join(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,477 |
s468527961 | p04044 | u738269785 | 1587114256 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 148 | n, l = [int(x) for x in input().split()]
nl = []
for i in range(n):
a = input()
nl.append(a)
nl.sort()
for x in nl:
print(x, end="")
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,478 |
s269745889 | p04044 | u426764965 | 1587095293 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 120 | n, l = map(int, input().split())
S = [str(input()) for i in range(n)]
ans = ''
for s in sorted(S):
ans += s
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,479 |
s608800321 | p04044 | u199290844 | 1587092388 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 106 | N, L = list(map(int, input().rstrip().split(' ')))
print(''.join(sorted(list(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,480 |
s906249240 | p04044 | u280552586 | 1587087018 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 93 | n, l = map(int, input().split())
ls = sorted([input() for _ in range(n)])
print(*ls, 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,481 |
s206782629 | p04044 | u171803978 | 1587074590 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 201 | n, l = map(int, input().split())
moji_array = [input() for _ in range(n)]
moji_array.sort()
result = ''.join(moji_array)
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,482 |
s842660936 | p04044 | u425762225 | 1587062163 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 356 | #!/usr/bin/env python3
# Generated by 1.1.6 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
def main():
N, l = map(int,input().split())
s_sorted = sorted([input() for i in range(N)])
print("".join(s_sorted))
i... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,483 |
s826881710 | p04044 | u286754585 | 1587052466 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 141 | n,l=map(int,input().split())
s=[""]*n
for i in range(n):
s[i]=input()
s=sorted(s)
ans=""
for i in range(n):
ans=ans+s[i]
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,484 |
s161415411 | p04044 | u923583900 | 1587046391 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 175 | number,length=map(int,input().split())
input_list=[]
out=''
for i in range(number):
input_list.append(input())
input_list.sort()
for i in input_list:
out+=i
print(out) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,485 |
s073304352 | p04044 | u580316619 | 1587037964 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 110 | p = input('')
q = p.split(' ')
n = int(q[0])
a = [input('') for i in range(n)]
b = sorted(a)
print(''.join(b)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,486 |
s064859392 | p04044 | u496821919 | 1587015425 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 124 | N,L = map(int,input().split())
S = [input() for i in range(N)]
S.sort()
s = ""
for i in range(N):
s += S[i]
print(s)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,487 |
s464813189 | p04044 | u340781749 | 1587009586 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 98 | n, l = map(int, input().split())
sss = [input() for _ in range(n)]
sss.sort()
print(''.join(sss))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,488 |
s347153221 | p04044 | u396266329 | 1587006127 | 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,489 |
s950160650 | p04044 | u159994501 | 1587003324 | 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,490 |
s647979820 | p04044 | u576432509 | 1587000506 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 209 | icase=0
if icase==0:
n,l=map(int,input().split())
s=[]
for i in range(n):
si=input()
s.append(si)
s.sort()
ss=""
for i in range(n):
ss=ss+s[i]
print(ss)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,491 |
s688623985 | p04044 | u505830998 | 1586996022 | Python | Python (3.4.3) | py | Accepted | 18 | 3064 | 845 | import sys
input_methods=['clipboard','file','key']
using_method=0
input_method=input_methods[using_method]
IN=lambda : map(int, input().split())
mod=1000000007
#+++++
def main():
#a = int(input())
n,l = IN()
ss=[]
for _ in range(n):
s = input()
ss.append(s)
ss.sort()
return ''.join(ss)
#+++++
isTes... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,492 |
s556187009 | p04044 | u069744971 | 1586989510 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 119 | a,b = map(int, input().split())
c = [input() for _ in range(a)]
s = ""
c.sort()
for i in range(a):
s += c[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,493 |
s569514946 | p04044 | u651109406 | 1586971465 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 131 | n, l = map(int, input().split())
s = []
for i in range(n):
s.append(input())
s.sort()
[print(i, end='') for i in s]
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,494 |
s369114030 | p04044 | u191423660 | 1586969912 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 167 | N, L = map(int, input().split())
S = [0] * N
for i in range(N):
S[i] = input()
S = sorted(S)
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,495 |
s210408022 | p04044 | u556161636 | 1586957647 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 117 | N,L=map(int,input().split())
lst=[]
for _ in range(N):
arg=input()
lst.append(arg)
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,496 |
s690731794 | p04044 | u136843617 | 1586931196 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 89 | n,l = map(int, input().split())
s = sorted([input() for _ in range(n)])
print("".join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,497 |
s127503925 | p04044 | u136843617 | 1586931044 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 98 | N, _ = [int(x) for x in input().split()]
S = sorted([input() for _ in range(N)])
print(''.join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,498 |
s410652543 | p04044 | u469392996 | 1586927967 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 96 | N, L = map(int, input().split())
S = (input() for i in range(N))
a = "".join(sorted(S))
print(a) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,499 |
s943100978 | p04044 | u998082063 | 1586920155 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 94 | N,L = map(int,input().split())
S = [input() for i in range(N)]
a = "".join(sorted(S))
print(a) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,500 |
s225979018 | p04044 | u345136423 | 1586910202 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | a,b = map(int,input().split())
s =sorted([input() for i in range(a)])
print(''.join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,501 |
s896846456 | p04044 | u425762225 | 1586908831 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 417 | #!/usr/bin/env python3
# Generated by 1.1.6 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
def main():
N, l = map(int,input().split())
s = []
for i in range(N):
s.append(input())
s_sorted = sorte... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,502 |
s359543103 | p04044 | u425762225 | 1586908562 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 452 | #!/usr/bin/env python3
# Generated by 1.1.6 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
def main():
N, l = map(int,input().split())
s = []
for i in range(N):
s.append(input())
s_sorted = sorte... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,503 |
s961447740 | p04044 | u342456871 | 1586897176 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 156 | n, l = map(int, input().split())
si = []
for i in range(n):
si.append(input())
sj = sorted(si)
sans = ''
for i in range(n):
sans += sj[i]
print(sans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,504 |
s014350117 | p04044 | u848667447 | 1586896537 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 127 | I = list(map(int, input().split()))
s = [input() for i in range(I[0])]
s = sorted(s)
mojiretu = ''.join(s)
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,505 |
s215469389 | p04044 | u996665352 | 1586894879 | 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,506 |
s561409742 | p04044 | u996665352 | 1586894762 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 98 | n,l=map(int,input().split())
s=sorted([input() for i in range(n)])
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,507 |
s960473777 | p04044 | u515647766 | 1586891569 | Python | Python (3.4.3) | py | Accepted | 44 | 3064 | 620 | def order(str1, str2):
for i in range(len(str1)):
if ord(str1[i]) > ord(str2[i]):
return False
elif ord(str1[i]) == ord(str2[i]):
continue
else:
return True
def sort(str_list):
for i in range(len(str_list) - 1):
for j in range(i + 1, len(str_list)):
if not order(str_list[i]... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,508 |
s966746208 | p04044 | u588526762 | 1586890674 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 216 | n, l = map(int, input().split())
# リスト内包表記
# 以下と同等
## strs = []
## for i in range(n):
## strs.append(input())
strs = [input() for _ in range(n)]
strs.sort()
strs = ''.join(strs)
print(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,509 |
s300843216 | p04044 | u519939795 | 1586883692 | Python | Python (3.4.3) | py | Accepted | 20 | 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,510 |
s416005931 | p04044 | u519939795 | 1586883591 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 144 | n,l=map(int,input().split())
li=[]
while n>0:
a=input()
li.append(a)
n-=1
kk=sorted(li)
moji=''
for x in kk:
moji+=x
print(moji) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,511 |
s766802968 | p04044 | u849229491 | 1586876710 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 96 | N,L = map(int,input().split())
S = [input() for i in range(N)]
a = "".join(sorted(S))
print((a)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,213,512 |
s916401390 | p04044 | u246343119 | 1586849426 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 129 | N, L = map(int, input().split())
S = []
for i in range(N):
s = input()
S.append(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,513 |
s453202291 | p04044 | u396961814 | 1586835208 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 116 | n, l = [int(x) for x in input().split()]
S = [input() for x in range(n)]
ans = list(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,514 |
s602390897 | p04044 | u975644365 | 1586816983 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | 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,515 |
s601924218 | p04044 | u777241657 | 1586809664 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 132 | cc,tot=(int(x) for x in input().split())
al=[]
for i in range(cc):
al.append(input())
al.sort()
answer=''.join(al)
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,516 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.