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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s191123933 | p04044 | u367373844 | 1578801030 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 255 | input_map = []
string_num, string_length = map(int, input().split())
for i in range(string_num):
input_line = input()
input_map.append(input_line)
input_map.sort()
line = ""
for i in range(string_num):
line = line + input_map[i]
print(line) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,017 |
s311919588 | p04044 | u710907926 | 1578788707 | 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,214,018 |
s655157623 | p04044 | u710907926 | 1578788673 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | N,L = map(int, input().split())
s = [input() for i in range(N)]
s.sort()
print(''.join(s))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,019 |
s423401955 | p04044 | u971237642 | 1578781453 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 156 | # -*- coding: utf-8 -*-
n, l = map(int, input().split())
s = ["" for _ in range(n)]
for i in range(n):
s[i] = 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,214,020 |
s483583786 | p04044 | u686036872 | 1578730072 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 100 | 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,214,021 |
s279249229 | p04044 | u686036872 | 1578729988 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 132 | # 入力
N,L=map(int,input().split())
l=[]
for i in range(N):
l.append(input())
# ソート
l.sort()
# 出力
print(''.join(l)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,022 |
s887173286 | p04044 | u775681539 | 1578704656 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 130 | #python3
n,l = map(int, input().split())
s = sorted([str(input()) for _ in range(n)])
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,214,023 |
s268684848 | p04044 | u672316981 | 1578682462 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 144 | n,l = map(int,input().split())
lst = []
for _ in range(n):
lst.append(str(input()))
lst.sort()
for i in range(n):
print(lst[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,214,024 |
s461331871 | p04044 | u075155299 | 1578678295 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 103 | 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,214,025 |
s058561007 | p04044 | u102004737 | 1578671392 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 84 | n,l=map(int,input().split())
S=[input() for i in range(n)]
S.sort()
print(*S,sep='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,026 |
s610456477 | p04044 | u868701750 | 1578670711 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 97 | n, l = map(int, input().split())
sts = [input() for _ in range(n)]
sts.sort()
print(''.join(sts)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,027 |
s165593656 | p04044 | u805045107 | 1578609429 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 122 | N, L = map(int,input().split())
words = []
for i in range(N):
words.append(input())
words.sort()
print(''.join(words)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,028 |
s313141193 | p04044 | u393253137 | 1578607261 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 110 | n,l=map(int,input().split())
S=sorted(list(input() for _ in range(n)))
for s in S:
print(s,end='')
print() | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,029 |
s766722186 | p04044 | u431981421 | 1578581624 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 109 | N,L = map(int,input().split())
li = []
for i in range(N):
li.append(input())
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,214,030 |
s236911033 | p04044 | u620868411 | 1578542909 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 118 | # -*- coding: utf-8 -*-
n,k = map(int, input().split())
sl = [input() for _ in range(n)]
sl.sort()
print("".join(sl)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,031 |
s694462787 | p04044 | u968404618 | 1578483730 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 134 | n, l = map(int, input().split())
S = []
for _ in range(n):
S.append(input())
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,214,032 |
s492934788 | p04044 | u268792407 | 1578430944 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 110 | 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,214,033 |
s016280947 | p04044 | u226912938 | 1578424857 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 155 | n, l = map(int, input().split())
S = []
for _ in range(n):
S.append(str(input()))
S = sorted(S)
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,214,034 |
s419284283 | p04044 | u057993957 | 1578363656 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 98 | N, L = list(map(int, input().split()))
S = [ input() for n 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,214,035 |
s106479033 | p04044 | u823044869 | 1578334286 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 278 | n,l = map(int,input().split())
sArray = [input() for i in range(n)]
#文字列比較は辞書順となる
sASorted = sorted(sArray)
#''.joinはリスト要素に格納された文字列の結合をすっきり書くことができる
result = ''.join(sASorted)
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,214,036 |
s158448331 | p04044 | u427984570 | 1578329197 | Python | Python (3.4.3) | py | Accepted | 18 | 3064 | 362 | num = input().split()
str = [input()]
strc = ''
flg = 0
res = ''
for i in range(int(num[0])-1):
# print(1)
strc = input()
for j in range(len(str)):
if str[j] < strc:
# print(2)
flg = 0
else:
# print(3)
flg = j
break
j += 1
flg = -1
if flg == 0:
str.append(strc)
else:
str.insert(j,strc)
# pri... | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,037 |
s289293346 | p04044 | u297767059 | 1578240088 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 315 | import sys
def solve(inp):
(N, L) = map(int, inp.readline().split(' '))
S = sorted([inp.readline() for i in range(N)])
r = ""
for s in S:
r += s.strip()
return r
def main():
result = solve(sys.stdin)
if result:
print(result)
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,214,038 |
s561639693 | p04044 | u490553751 | 1578183904 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 195 | import sys
input = sys.stdin.readline
N,L = [int(i) for i in input().split()]
nes = ['t'] * N
for i in range(N):
nes[i] = input()
nes.sort()
S = ''.join(nes)
Sa = S.replace('\n','')
print(Sa) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,039 |
s313863629 | p04044 | u838786721 | 1578178593 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 133 | n,l = map(int,input().split())
s = []
for i in range(n):
s.append(input())
s.sort()
d = ''
for i in range(n):
d += s[i]
print(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,214,040 |
s813596962 | p04044 | u548768105 | 1578174068 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 119 | n,l = map(int,input().split())
s = [input() for i in range(n)]
s.sort()
ans = ''
for a in s:
ans += a
print(*s,sep='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,041 |
s937984161 | p04044 | u355661029 | 1578154483 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | n, l = map(int, input().split())
s = sorted([input() for i in range(n)])
print(*s, sep='')
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,042 |
s937365167 | p04044 | u025595730 | 1578097082 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 291 | # coding: utf-8
def main():
str_count, _ = map(int, input().split(' '))
str_join = []
for _ in range(str_count):
str_join.append(input())
str_join = sorted(str_join)
print(''.join(str_join))
return 0
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,214,043 |
s577812691 | p04044 | u668352391 | 1578091420 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 119 | n, l = map(lambda x: int(x), input().split())
s_list = [input() for _ in range(n)]
s_list.sort()
print(''.join(s_list)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,044 |
s410278355 | p04044 | u757117214 | 1578079426 | Python | Python (3.4.3) | py | Accepted | 19 | 3060 | 99 | 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,214,045 |
s835119063 | p04044 | u906077984 | 1578010482 | Python | Python (3.4.3) | py | Accepted | 19 | 3064 | 312 | N,L = map(int,input().split())
S = []
for i in range(N):
str = input()
S.append(str)
value = ""
for i in range(N):
for j in range(i+1,N):
if S[i] > S[j]:
value = S[i]
S[i] = S[j]
S[j] = value
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,214,046 |
s726582880 | p04044 | u154979004 | 1578002753 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | n, l = map(int, input().split())
S = sorted([input() for _ in range(n)])
print(*S, sep='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,047 |
s339872568 | p04044 | u000217253 | 1578002086 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 142 | a,b=(int(x) for x in input().split())
list=[]
for i in range(a):
aaa=input()
list.append(aaa)
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,214,048 |
s218208927 | p04044 | u764860452 | 1577991301 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 85 | N,L=map(int,input().split())
S=[input() for i in range(N)]
S.sort()
print("".join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,049 |
s392572028 | p04044 | u444238096 | 1577936234 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 145 | lengh, count = map(int, input().split())
strlist = []
for i in range(0,lengh):
strlist.append(input())
strlist.sort()
print("".join(strlist)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,050 |
s054440195 | p04044 | u318024671 | 1577912995 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 145 | lengh, count = map(int, input().split())
strlist = []
for i in range(0,lengh):
strlist.append(input())
strlist.sort()
print("".join(strlist)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,051 |
s438558043 | p04044 | u079022693 | 1577903106 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 112 | N,L=map(int,input().split())
S=list()
for i in range(N):
s=input()
S.append(s)
S.sort()
print("".join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,052 |
s868015857 | p04044 | u792512290 | 1577896966 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 126 | N,L=map(int, input().split())
str_lists = []
for i in range(N):
str_lists.append(input())
print(''.join(sorted(str_lists))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,053 |
s613942233 | p04044 | u614550445 | 1577860387 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 112 |
N, L = [int(_) for _ in input().split()]
T = [input() for i in range(N)]
ans = ''.join(sorted(T))
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,054 |
s784529281 | p04044 | u735069283 | 1577854104 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 89 | N,L= map(int,input().split())
S = [input() for _ in range(N)]
S.sort()
print(''.join(S))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,055 |
s457021327 | p04044 | u530786533 | 1577757963 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 134 | n, l = map(int, input().split())
s = []
for x in range(n):
s.append(input())
s.sort()
tmp = [print(x, end='') for x 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,214,056 |
s216699088 | p04044 | u972892985 | 1577741398 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 86 | n, l = map(int,input().split())
s = sorted(input() for i in range(n))
print(*s,sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,057 |
s989852656 | p04044 | u007263493 | 1577735324 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 105 | 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,214,058 |
s566478645 | p04044 | u517910772 | 1577728369 | 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())
print(''.join(sorted(S)))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,059 |
s526427723 | p04044 | u729915102 | 1577687453 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 97 | n, m = map(int, input().split())
ls = [str(input()) for _ in range(n)]
print(''.join(sorted(ls))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,060 |
s668356438 | p04044 | u380933932 | 1577684187 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 148 | a=[]
nl=list(map(int,input().split()))
for i in range(nl[0]):
a.append(input())
a.sort()
ans=""
for i in range(nl[0]):
ans+=a[i]
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,061 |
s072882433 | p04044 | u076764813 | 1577620727 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 97 | N, L= map(int, input().split())
s = sorted([input() for i in range(N)])
print(*s, sep="")
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,062 |
s978227125 | p04044 | u608726540 | 1577601481 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 136 | n,l=map(int,input().split())
s=[]
for i in range(n):
s.append(input())
s.sort()
ans=''
for j in range(n):
ans+=s[j]
print(ans)
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,063 |
s232290030 | p04044 | u683134447 | 1577571863 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 126 | n,l = map(int,input().split())
sl = []
for _ in range(n):
s = input()
sl.append(s)
sl = sorted(sl)
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,214,064 |
s027234342 | p04044 | u187058053 | 1577482134 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 97 | n, l = map(int,input().split())
s = [str(input()) for x in range(n)]
s.sort()
print("".join(s)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,065 |
s020572965 | p04044 | u923657126 | 1577457166 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 157 | n, l = map(int,input().split())
sn = ['']*n
for i in range(n):
sn[i] = str(input())
ss = sorted(sn)
ans=''
for i in range(n):
ans+= ss[i]
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,066 |
s694096775 | p04044 | u102242691 | 1577419478 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 98 |
n,l = map(int,input().split())
s = [input() for i in range(n)]
a = sorted(s)
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,214,067 |
s722370914 | p04044 | u426572476 | 1577414177 | Python | Python (3.4.3) | py | Accepted | 37 | 5088 | 149 | import math
import fractions
n, l = map(int, input().split())
s = sorted([input() for i in range(n)])
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,214,068 |
s491398680 | p04044 | u581187895 | 1577413681 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | N, L = map(int, input().split())
A = sorted([input() for _ in range(N)])
print("".join(A)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,069 |
s488262121 | p04044 | u263226212 | 1577400966 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 122 | # -*- coding: utf-8 -*-
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,214,070 |
s287836409 | p04044 | u810457760 | 1577311285 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 109 | x = list(map(int,input().split()))
a = [str(input()) for i in range(x[0])]
a.sort()
b = "".join(a)
print(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,214,071 |
s957822507 | p04044 | u561083515 | 1577298379 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 102 | N, L = map(int,input().split())
S = sorted([input().rstrip("\n") 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,214,072 |
s675792846 | p04044 | u327532412 | 1577291295 | 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,214,073 |
s194250426 | p04044 | u843612833 | 1577280101 | 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 = ''
for i in range(n):
ans += s[i]
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,074 |
s358159559 | p04044 | u325282913 | 1577247874 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 134 | N, L = map(int, input().split())
a = []
for _ in range(N):
a.append(input())
a.sort()
ans = ''
for i in a:
ans += i
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,075 |
s250192468 | p04044 | u355137116 | 1577221910 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | n, l = map(int, input().split())
k = [input() for x in range(n)]
print(''.join(sorted(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,214,076 |
s167025847 | p04044 | u150423122 | 1577212325 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | n, l = map(int, input().split())
k = [input() for x in range(n)]
k.sort()
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,214,077 |
s358406130 | p04044 | u857346974 | 1577160936 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 156 | N,L = [int(i) for i in input().split()]
s = [input() for i in range(N)]
List_sorted = sorted(s)
ans = ""
for i in List_sorted:
ans = 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,214,078 |
s740705762 | p04044 | u470542271 | 1577158491 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 93 | n, l = map(int, input().split())
s = [input() for _ in range(n)]
s.sort()
print(''.join(s))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,079 |
s120520077 | p04044 | u783589546 | 1577157394 | 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,214,080 |
s021948028 | p04044 | u235280114 | 1577157130 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 87 | n,l = map(int,input().split())
s = sorted([input() for i in range(n)])
print(*s,sep="") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,081 |
s079485908 | p04044 | u235280114 | 1577156944 | 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,214,082 |
s549896823 | p04044 | u560301743 | 1577155735 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | N, _ = map(int, input().split())
values = [input() for _ in range(N)]
print(''.join(sorted(values)))
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,083 |
s324732198 | p04044 | u171065106 | 1577149669 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 92 | 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,214,084 |
s893713200 | p04044 | u498975813 | 1577149180 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 104 | n,l = map(int,input().split())
s = []
for i in range(n):
s.append(input())
print(''.join(sorted(s))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,085 |
s683814378 | p04044 | u710659690 | 1577133359 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 112 | N, L = list(map(int, input().split()))
S = []
for i in range(N):
S.append(input())
S.sort()
print("".join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,086 |
s590773056 | p04044 | u892538842 | 1577101295 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 133 | n, l = map(int, input().split(' '))
lst = []
for _ in range(n):
lst.append(input())
all_str = sorted(lst)
print(''.join(all_str)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,087 |
s858833929 | p04044 | u892538842 | 1577091473 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 133 | n, l = map(int, input().split(' '))
lst = []
for _ in range(n):
lst.append(input())
all_str = sorted(lst)
print(''.join(all_str)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,088 |
s449568633 | p04044 | u776237437 | 1577073068 | 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,214,089 |
s940615114 | p04044 | u840310460 | 1577054133 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 100 | N, L = [int(i) for i in input().split()]
S = sorted([input() for i in range(N)])
print("".join(S)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,090 |
s867505277 | p04044 | u006425112 | 1577029352 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 114 | import sys
n,l = map(int, sys.stdin.readline().split())
l = [input() for _ 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,214,091 |
s211471451 | p04044 | u808688003 | 1576980065 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 168 | N, L = map(int, input().split())
arr = [input() for i in range(N)]
arr = sorted(arr, key=lambda ele: ele, reverse=False)
ans = ""
for s in arr:
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,214,092 |
s823456938 | p04044 | u561883765 | 1576970309 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 129 | n,l = map(int,input().split())
word = [input() for i in range(n)]
word.sort()
a = ""
for i in range(n):
a += word[i]
print(a) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,093 |
s702192521 | p04044 | u308695322 | 1576963016 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 98 | N, L = map(int, input().split())
datas = [input() for i in range(N)]
print(''.join(sorted(datas))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,094 |
s800290413 | p04044 | u433559751 | 1576960349 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 158 | N, L = map(int, input().split(" "))
word_lst = [input() for i in range(N)]
word_lst.sort()
words = str()
for word in word_lst:
words += word
print(words) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,095 |
s682553216 | p04044 | u181215519 | 1576954780 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 112 | N, L = map( int, input().split() )
S = list( str(input()) for x in range(N) )
S.sort()
print( "".join( S ) ) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,096 |
s189757347 | p04044 | u386089355 | 1576949154 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 150 | n, l = map(int, input().split())
ls_s = [input() for _ in range(n)]
ls_ans = sorted(ls_s)
ans = ''
for i in range(n):
ans += ls_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,214,097 |
s455319832 | p04044 | u961674365 | 1576902673 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 135 | n,l=map(int,input().split())
s=['' for i in range(n)]
for i in range(n):
s[i]=input()
s.sort()
ans=''
for x in s:
ans+=x
print(ans) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,098 |
s755970898 | p04044 | u243572357 | 1576883662 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | n, l = map(int, input().split())
a = sorted([input() for i in range(n)])
print("".join(a)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,099 |
s879320174 | p04044 | u919978322 | 1576869868 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 202 | ip1 = input().split()
N = int(ip1[0])
L = int(ip1[1])
strings = []
for i in range(N):
strings.append(input())
strings.sort()
ans = ""
for i in range(len(strings)):
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,214,100 |
s951119090 | p04044 | u761565491 | 1576860594 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 100 | n,l = list(map(int,input().split()))
data = sorted([input() for i in range(n)])
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,214,101 |
s738771501 | p04044 | u540761833 | 1576857295 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 127 | 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,214,102 |
s963259069 | p04044 | u112567325 | 1576853436 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 99 | N,L = list(map(int,input().split()))
S = [str(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,214,103 |
s379127438 | p04044 | u469700628 | 1576820023 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 103 | N, L = map(int, input().split())
lix = sorted(input() for i in range(N))
res = "".join(lix)
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,214,104 |
s230834794 | p04044 | u007886915 | 1576801497 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 1,863 | # -*- coding: utf-8 -*-
import sys
import itertools#これは色々使える組み込み関数みたいなやつ
import math#数学的計算はこれでいける。普通に0.5乗しても計算可能
#w=input()
i=0
#L=int(input())
N, L=input().split()
#S=input()
#T=input()
#S_list=list(S)
#T_list= list(map(int, input().split(" ")))
#M=int(input())
#drink_list = [list(map(int, input().split(" ")))for i 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,214,105 |
s463142179 | p04044 | u183840468 | 1576794653 | Python | Python (3.4.3) | py | Accepted | 18 | 3060 | 100 | a,b = [int(i) for i in input().split()]
l = sorted([input() for _ in range(a)])
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,214,106 |
s758917654 | p04044 | u488884575 | 1576731160 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 141 | N, L = [int(i) for i in input().split(" ")]
slist = []
for i in range(N):
slist.append(input())
slist = "".join(sorted(slist))
print(slist) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,107 |
s310408803 | p04044 | u255415694 | 1576729335 | Python | Python (3.4.3) | py | Accepted | 17 | 3064 | 126 | n, l = map(int, input().split())
s = [None]*n
for i in range(n):
s[i]=input()
s.sort()
ss = ''
for i in s:
ss+=i
print(ss) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,108 |
s424379732 | p04044 | u768896740 | 1576727855 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 156 | n, l = map(int, input().split())
words = []
for i in range(n):
word = input()
words.append(word)
words.sort()
for i in words:
print(i, end='') | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,109 |
s332502484 | p04044 | u287097467 | 1576717269 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 101 | n, l = input().split(' ')
words = [input() for i in range(int(n))]
words.sort()
print(''.join(words)) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,110 |
s153895534 | p04044 | u477343425 | 1576681991 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | n,l = map(int, input().split())
L = sorted([input() for i in range(n)])
print(*L, sep = "") | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,111 |
s027173619 | p04044 | u477343425 | 1576681890 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 90 | n, l = map(int, input().split())
L = sorted([input() for i in range(n)])
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,214,112 |
s392367314 | p04044 | u774160580 | 1576641072 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 91 | N, L = map(int, input().split())
S = [input() for i in range(N)]
S.sort()
print(*S,sep="")
| p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,113 |
s821488716 | p04044 | u343092716 | 1576640810 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 159 | n, l = map(int, input().split())
book = []
for i in range(n):
book.append(input())
builded = ""
for i in sorted(book):
builded += i
print(builded) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,114 |
s187717561 | p04044 | u417014669 | 1576639921 | Python | Python (3.4.3) | py | Accepted | 17 | 3060 | 97 | 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,214,115 |
s218350728 | p04044 | u417014669 | 1576639489 | 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())
print(''.join(sorted(s))) | p04044 | <span class="lang-en">
<p>Score : <var>200</var> points</p>
<div class="part">
<section>
<h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p>
<p>She will concatenate all of the strings in some order, to produce a long str... | 3 3
dxx
axx
cxx
| axxcxxdxx
| 1,214,116 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.