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
s237894382
p04044
u477343425
1576634207
Python
Python (3.4.3)
py
Accepted
17
3060
91
n, l = map(int,input().split()) s = sorted([input() for i in range(n)]) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,117
s060866618
p04044
u477343425
1576633113
Python
Python (3.4.3)
py
Accepted
17
3060
205
n, l = map(int , input().split()) s = sorted([input() for i in range(n)]) print(*s, sep = "") # 1次元リストをアンパックを使用して出力する場合、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,118
s614913583
p04044
u046592970
1576601922
Python
Python (3.4.3)
py
Accepted
18
3060
143
N, L = map(int, input().split()) slist = [] for i in range(N): S = input() slist.append(S) slist.sort() ans = "".join(slist) 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,119
s322375249
p04044
u580258754
1576589667
Python
Python (3.4.3)
py
Accepted
17
3060
99
N,L = map(int, input().split()) list = [input() for i in range(N)] list.sort() print("".join(list))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,120
s826074306
p04044
u671211357
1576553453
Python
Python (3.4.3)
py
Accepted
17
3060
119
N , L = map(int,input().split()) S = list(input() for i in range(N)) S.sort() for j in range(N): print(S[j],end="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,121
s612180358
p04044
u831752983
1576527065
Python
Python (3.4.3)
py
Accepted
18
3060
190
n,l=map(int,input().split()) s=[""]*n for i in range(n): s[i]=input() ans="" for _ in range(n): ne=s[0] for word in s: if word<ne: ne=word s.remove(ne) ans+=ne 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,122
s459841378
p04044
u254871849
1576468025
Python
Python (3.4.3)
py
Accepted
17
3060
165
import sys n, l, *s = sys.stdin.read().split() def main(): s.sort() t = ''.join(s) return t if __name__ == '__main__': ans = main() 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,123
s690849917
p04044
u778720350
1576448116
Python
Python (3.4.3)
py
Accepted
17
3060
110
n, l = map(int, input().split(' ')) s = [] for i in range(n): s.append(input()) s.sort() print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,124
s174110907
p04044
u905582793
1576416929
Python
Python (3.4.3)
py
Accepted
17
3060
84
n,l=map(int,input().split()) a=[input() for _ in range(n)] a.sort() 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,214,125
s895195836
p04044
u288786530
1576387943
Python
Python (3.4.3)
py
Accepted
17
3060
105
n, l = map(int, input().split()) d =[input() for i in range(n)] ans = "".join(sorted(d)) 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,126
s017755979
p04044
u496966444
1576364865
Python
Python (3.4.3)
py
Accepted
17
3060
115
n, l = map(int, input().split()) words = [input() for i in range(n)] words.sort() ans = ''.join(words) 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,127
s506392861
p04044
u680851063
1576357327
Python
Python (3.4.3)
py
Accepted
17
3060
115
a=input().split() b=int(a[0]) data = [input() for i in range(b)] data.sort() #print(data) k="".join(data) print(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,128
s102776811
p04044
u680851063
1576357121
Python
Python (3.4.3)
py
Accepted
17
3060
129
a=input().split() b=int(a[0]) data = [input() for i in range(b)] data.sort() #print(data) k="" for i in data: k=k+i print(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,129
s927672667
p04044
u202688141
1576292917
Python
Python (3.4.3)
py
Accepted
17
3060
194
N,L = map(int, input().split()) word_list =[] for i in range(N): word_list.append(input()) word_list = sorted(word_list) word = "" for i in range(N): word += word_list[i] print(word)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,130
s526992686
p04044
u086485448
1576286441
Python
Python (3.4.3)
py
Accepted
18
3064
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,131
s250363971
p04044
u309141201
1576284161
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,132
s736237328
p04044
u112623731
1576266056
Python
Python (3.4.3)
py
Accepted
18
3060
89
n,l = map(int, input().split()) s = sorted([input() for _ in range(n)]) print(*s, sep='')
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,133
s573711597
p04044
u965436898
1576263373
Python
Python (3.4.3)
py
Accepted
17
3060
88
n,l = map(int,input().split()) S = [input() for _ in range(n)] print("".join(sorted(S)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,134
s500391794
p04044
u140480594
1576251572
Python
Python (3.4.3)
py
Accepted
17
3060
142
N, L = list(map(int, input().split())) S = [] for i in range(N) : S.append(str(input())) sorted_list = sorted(S) print("".join(sorted_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,135
s251907957
p04044
u622045059
1576206071
Python
Python (3.4.3)
py
Accepted
17
3060
91
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,214,136
s398106495
p04044
u557168336
1576202804
Python
Python (3.4.3)
py
Accepted
17
3060
68
import sys N,L,*V=sys.stdin.read().split() print(*sorted(V),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,137
s200715949
p04044
u626467464
1576184265
Python
Python (3.4.3)
py
Accepted
17
3060
158
n , l = map(int,input().split()) words = [] for i in range(n): word = input() words.append(word) words = sorted(words) for j in words: print(j,end = "")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,138
s936616482
p04044
u308684517
1576164033
Python
Python (3.4.3)
py
Accepted
17
3060
107
n, l = map(int, input().split()) s = [] for i in range(n): s.append(input()) s.sort() 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,139
s195860793
p04044
u167908302
1576119225
Python
Python (3.4.3)
py
Accepted
17
3060
125
#coding:utf-8 n, l = map(int, input().split()) s = [input() for _ 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,214,140
s027658121
p04044
u034066795
1576106173
Python
Python (3.4.3)
py
Accepted
23
3572
173
from functools import reduce N, L = map(int, input().split()) iroha = [] for i in range(N): iroha.append(input()) iroha.sort() print(reduce(lambda a,b: a+b, iroha))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,141
s693813692
p04044
u794910686
1576097633
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,142
s807803516
p04044
u794910686
1576097238
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,214,143
s977495132
p04044
u760802228
1576039462
Python
Python (3.4.3)
py
Accepted
18
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,144
s107245383
p04044
u175590965
1576036581
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() 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,145
s792160121
p04044
u934052933
1575988888
Python
Python (3.4.3)
py
Accepted
17
3060
239
def main()->None: (N, L) = map(int, input().split()) range_N = range(N) s = [] for i in range_N: s.append(input()) sorted_s = sorted(s) print("".join(sorted_s)) if __name__ == "__main__": main()
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,146
s266668882
p04044
u617037231
1575982914
Python
Python (3.4.3)
py
Accepted
17
3060
161
N,L = map(int,input().split()) Liste_Iroha = list(map(str,[input() for i in range(N)])) res = '' for word in sorted(Liste_Iroha): res = res + word 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,147
s728626066
p04044
u875600867
1575952025
Python
Python (3.4.3)
py
Accepted
17
3060
446
# 長さLの文字列がN個 N,L = map(int, input().split()) # 入力した文字を保存する変数を初期化 moji=[] # N個の文字列を入力するために、入力を繰り返す for i in range(N): # 文字列を入力 tmp = input() # 文字列をリストに追加 moji.append(tmp) # 文字列をアルファベット順に並び替える moji.sort() # 文字列を結合して表示する print("".join(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,214,148
s344402089
p04044
u973013625
1575949572
Python
Python (3.4.3)
py
Accepted
17
3060
123
n, l = map(int, input().split()) a = [] for i in range(n): s = input() a.append(s) 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,214,149
s939743777
p04044
u344178887
1575937289
Python
Python (3.4.3)
py
Accepted
17
3060
163
#!/usr/bin/env python3 # -*- coding: utf-8 -*- N, L = map(int, input().split()) S = [] for i in range(N): S.append(str(input())) S.sort() print(''.join(S))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,150
s298416569
p04044
u061127257
1575909980
Python
Python (3.4.3)
py
Accepted
17
3060
110
a,b=map(int, input().split()) s=[] for i in range(a): s.append(input()) s.sort() ans="".join(s) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,151
s726952513
p04044
u416223629
1575909475
Python
Python (3.4.3)
py
Accepted
18
3060
109
NL=list(map(int,input().split())) N=NL[0] L=NL[1] 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,152
s102966220
p04044
u674064321
1575839862
Python
Python (3.4.3)
py
Accepted
18
3060
104
N, L = map(int, input().split()) S = list(input() for _ in range(N)) S.sort() print("".join(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,214,153
s809663409
p04044
u638282348
1575792618
Python
Python (3.4.3)
py
Accepted
17
3060
92
[print("".join(sorted(input() for _ in range(n)))) for n, l in [map(int, input().split())]]
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,154
s421790574
p04044
u511854420
1575785648
Python
Python (3.4.3)
py
Accepted
20
3060
125
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,214,155
s799284654
p04044
u649529164
1575771191
Python
Python (3.4.3)
py
Accepted
17
3060
128
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,214,156
s986808755
p04044
u860819641
1575747593
Python
Python (3.4.3)
py
Accepted
18
3060
150
N,L=map(int,input().split()) S=[] for _ in range(N): S.append(input()) Sort=sorted(S) word="" for i in range(N): word=word+Sort[i] print(word)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,157
s425672714
p04044
u328090531
1575738071
Python
Python (3.4.3)
py
Accepted
19
3060
99
n, l = (int(x) for x in input().split()) s = [input() for a 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,158
s519260974
p04044
u235376569
1575736861
Python
Python (3.4.3)
py
Accepted
17
3060
169
a = input().rstrip().split() N=int(a[0]) L=int(a[1]) l=[] for i in range(N): b=input() l.append(b) l.sort() ans="" for i in range(N): ans+=l[i] print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,159
s813448891
p04044
u301331835
1575694994
Python
Python (3.4.3)
py
Accepted
17
3060
152
N , L = map(int,input().split()) str = [] for i in range(N): str.append(input()) str.sort() result = "" for j in str: result += j 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,160
s807200452
p04044
u994521204
1575654943
Python
Python (3.4.3)
py
Accepted
19
3188
326
N, L = list(map(int, input().split())) S = [input() for i in range(N)] num = [] ans = [] answer = [] for i in range(len(S)): num.append(list(map(ord, str(S[i])))) num.sort() for i in range(len(num)): ans.append(list(map(chr, num[i]))) for i in range(len(ans)): answer.append("".join(ans[i])) print("".join(an...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,161
s081436924
p04044
u653485478
1575642183
Python
Python (3.4.3)
py
Accepted
17
3060
130
n, l = map(int, input().split()) s = [input() for i in range(n)] s.sort() string = "" for i in s: string += i print(string)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,162
s810471395
p04044
u818283165
1575619394
Python
Python (3.4.3)
py
Accepted
17
3060
127
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,214,163
s873409723
p04044
u780475861
1575614395
Python
Python (3.4.3)
py
Accepted
17
3060
139
n,l = [int(i) for i in input().split()] lst = [] for _ in range(n): lst.append(input()) lst.sort() s = '' for i in lst: s += i print(s)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,164
s099453487
p04044
u780206746
1575613975
Python
Python (3.4.3)
py
Accepted
17
3060
122
N, _ = input().split(' ') N = int(N) strs = [] for _ in range(N): strs.append(input()) print(''.join(sorted(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,214,165
s314800127
p04044
u963343620
1575606536
Python
Python (3.4.3)
py
Accepted
17
3060
88
a, b = map(int, input().split()) c = sorted(input() for i in range(a)) print(*c, 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,166
s162096170
p04044
u811967730
1575602232
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,167
s037462309
p04044
u963343620
1575563228
Python
Python (3.4.3)
py
Accepted
17
3060
89
n, l =map(int, input().split()) s = sorted([input() for i in range(n)]) print(*s, sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,168
s417245808
p04044
u693007703
1575525497
Python
Python (3.4.3)
py
Accepted
17
3060
145
N, L = [int(i) for i in input().split()] strings = [input() for i in range(N)] sorted_strings = sorted(strings) print(''.join(sorted_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,214,169
s204891529
p04044
u987164499
1575491680
Python
Python (3.4.3)
py
Accepted
17
3060
163
from sys import stdin n,k = [int(x) for x in stdin.readline().rstrip().split()] li = [stdin.readline().rstrip() for _ in range(n)] 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,170
s846727942
p04044
u150603590
1575431390
Python
Python (3.4.3)
py
Accepted
18
3060
276
def minimum_search(S): pass if __name__ == '__main__': _ = list(map(int, input().split())) N, L = _[0], _[1] S = [] for i in range(N): S.append(input()) for i in range(N): temp=min(S) print(temp,end='') S.remove(temp)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,171
s009691255
p04044
u262750042
1575428585
Python
Python (3.4.3)
py
Accepted
17
3060
144
n = list(map(int, input().split())) count, lengch = n[0], n[1] strings = [input() for i in range(count)] 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,214,172
s468670663
p04044
u021548497
1575389105
Python
Python (3.4.3)
py
Accepted
18
3060
115
n, l = map(int, input().split()) ans = [0]*n for i in range(n): ans[i] = input() ans.sort() 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,214,173
s572361008
p04044
u490992416
1575352378
Python
Python (3.4.3)
py
Accepted
17
3060
114
n, l = [int(v) for v in input().split()] s = [] for v 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,174
s439085783
p04044
u885986895
1575347978
Python
Python (3.4.3)
py
Accepted
17
3060
92
N, L = map(int, input().split()) S = [input() for a 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,175
s057398038
p04044
u102242691
1575345577
Python
Python (3.4.3)
py
Accepted
17
3060
99
N,L = map(int,input().split()) 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,214,176
s861310474
p04044
u653792857
1575251150
Python
Python (3.4.3)
py
Accepted
17
3060
123
N, L = map(int, input().split()) S = [] for i in range(N): line = input() S.append(line) S.sort() print("".join(S))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,177
s154795941
p04044
u246019596
1575223739
Python
Python (3.4.3)
py
Accepted
18
3060
275
import itertools NLinput = input() NLinput = [int(x) for x in NLinput.split()] N = NLinput[0] L = NLinput[1] S_list = [] for i in range(N): temp = input() S_list.append(temp) S_list = sorted(S_list) str_temp = '' for i in S_list: str_temp += i print(str_temp)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,178
s686383873
p04044
u815444398
1575150145
Python
Python (3.4.3)
py
Accepted
17
3060
203
s=list(map(int,input().split())) num =int(s[0]) length =int(s[1]) statements =list() while num>0: statements.append(input()) num -=1 statements.sort() result =''.join(statements) 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,179
s703176378
p04044
u186729829
1575148962
Python
Python (3.4.3)
py
Accepted
17
3060
100
n, l = map(int, input().split()) s = [input() for _ in range(n)] ans = sorted(s) print(''.join(ans))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,180
s670406256
p04044
u684305751
1575142811
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("".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,181
s517407881
p04044
u078349616
1575086149
Python
Python (3.4.3)
py
Accepted
17
3060
149
N, L = list(map(int, input().split())) s = [input() for _ in range(N)] ans = "" for i in range(N): t = min(s) ans += t s.remove(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,182
s060153371
p04044
u920387587
1575063048
Python
Python (3.4.3)
py
Accepted
17
3060
200
n,l =map(int, input().split()) P = [input() for i in range(n)] lis=[] for j in range(n): minf=min(P) lis.append(minf) P.remove(minf) c=str() for i in range(n): c +=lis[i] print(c)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,183
s031591350
p04044
u219197917
1575035302
Python
Python (3.4.3)
py
Accepted
17
3060
79
n = int(input().split()[0]) print("".join(sorted([input() for _ in range(n)])))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,184
s489334542
p04044
u724428568
1575022715
Python
Python (3.4.3)
py
Accepted
17
3060
90
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,214,185
s831810223
p04044
u161776322
1575011764
Python
Python (3.4.3)
py
Accepted
17
3060
143
n, l = map(int, input().split()) s = [] for i in range(n): s.append(input()) s = sorted(s) for i in range(n): print(s[i], end = "")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,186
s051482052
p04044
u088974156
1574994160
Python
Python (3.4.3)
py
Accepted
17
3060
84
n,l=map(int,input().split()) s=sorted([input() for i in range(n)]) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,187
s042055418
p04044
u875600867
1574989751
Python
Python (3.4.3)
py
Accepted
18
3064
108
n, l = map(int, input().split()) S=[] for s 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,188
s032084976
p04044
u365254117
1574984889
Python
Python (3.4.3)
py
Accepted
17
3060
99
N, l = map(int, input().split()) lst= [ input() for n in range(N) ] 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,214,189
s592335085
p04044
u342869120
1574982449
Python
Python (3.4.3)
py
Accepted
17
3060
90
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,190
s214093012
p04044
u799691369
1574963699
Python
Python (3.4.3)
py
Accepted
18
3060
131
N, L = map(int, input().split()) S = [] for _ in range(N): S.append(input()) S.sort() for word in S: print(word, 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,191
s130453649
p04044
u614159574
1574927236
Python
Python (3.4.3)
py
Accepted
17
3060
158
m = input().split() n = int(m[0]) l = [] for i in range(n): l.append(input()) l.sort() final = "" for j in range(len(l)): final += l[j] print(final)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,192
s209724128
p04044
u854093727
1574910475
Python
Python (3.4.3)
py
Accepted
17
3060
92
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,193
s201781253
p04044
u276841801
1574880206
Python
Python (3.4.3)
py
Accepted
17
3060
176
# -*- coding: utf-8 -*- N, L = map(int, input().split()) a = [] for i in range(N): S = input() a.append(S) a_str_list = sorted(a) ans = "".join(a_str_list) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,194
s460727455
p04044
u788137651
1574874731
Python
Python (3.4.3)
py
Accepted
23
3572
1,408
# #    ⋀_⋀  #   (・ω・) # ./ U ∽ U\ # │* 合 *│ # │* 格 *│ # │* 祈 *│ # │* 願 *│ # │*   *│ #  ̄ # import sys sys.setrecursionlimit(10**6) input=sys.stdin.readline from math import floor,ceil,sqrt,factorial,log #log2ないyp from heapq import heappop, heappush, heappushpop from collections import Counter,defaultd...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,195
s980032928
p04044
u055687574
1574821699
Python
Python (3.4.3)
py
Accepted
18
3060
102
n, l = map(int, input().split()) mylist = sorted([input() for i in range(n)]) print("".join(mylist))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,196
s506176693
p04044
u774612753
1574791147
Python
Python (3.4.3)
py
Accepted
17
3060
94
n,l=map(int,input().split()) s=[input() for i in range(n)] s.sort() s1=''.join(s) print(s1)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,197
s063879973
p04044
u102960641
1574784154
Python
Python (3.4.3)
py
Accepted
17
3060
89
n,l = map(int, input().split()) s = sorted([input() for i in range(n)]) print("".join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,198
s664473365
p04044
u308650788
1574768731
Python
Python (3.4.3)
py
Accepted
17
3060
185
import math line = input() n, l = [int(x) for x in line.split()] strings = [] for i in range (n): strings.append(input()) strings.sort() seperator = '' print(seperator.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,214,199
s810880770
p04044
u357949405
1574738898
Python
Python (3.4.3)
py
Accepted
17
3060
99
n, l = list(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,200
s016739083
p04044
u088974156
1574659921
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,201
s095387515
p04044
u875449556
1574569492
Python
Python (3.4.3)
py
Accepted
18
3060
123
N, L = map(int,input().split()) array = [] for i in range(N): array.append(input()) array.sort() print("".join(array))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</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,202
s485752055
p04044
u771756419
1574542963
Python
Python (3.4.3)
py
Accepted
16
3060
213
nums = input().split() N = int(nums[0]) L = int(nums[1]) #繰り返しの要素入力 count = 0 list = [] while count < N: list.append(input()) count += 1 s_list = sorted(list) 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,203
s083888531
p04044
u094948011
1574540124
Python
Python (3.4.3)
py
Accepted
17
3060
134
T = () N , L = map(int, input().split()) S = [input() for i in range((N))] S.sort() T = ','.join(S) T = T.replace(',','') print(T)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,204
s588160172
p04044
u698460655
1574528310
Python
Python (3.4.3)
py
Accepted
20
3060
195
N,L = map(int, input().split()) data = [0]*N for i in range(0,N): data[i] = list(input()) s_data = sorted(data) res = "" for i in range(0,N): for item in s_data[i]: res += item 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,205
s180342173
p04044
u845937249
1574513039
Python
Python (3.4.3)
py
Accepted
17
3060
166
import sys if sys.platform =='ios': sys.stdin=open('input_file.txt') 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,214,206
s894571869
p04044
u045953894
1574450617
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,207
s919303177
p04044
u340947941
1574437564
Python
Python (3.4.3)
py
Accepted
17
3060
223
##### 解けた ##### N,L=list(map(int,input().split(" "))) S=[] # 文字列 for _ in range(N): # 入力 S.append(input()) # アルファベット順に並び替えた後出力 for s in sorted(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,214,208
s526375770
p04044
u644972721
1574402644
Python
Python (3.4.3)
py
Accepted
17
3060
157
n , l = map(int,input().split()) t = list() for i in range(n): s = input() t.append(s) t.sort() for i in range(n): print(t[i] , end = "") print()
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,209
s395017095
p04044
u133327090
1574370631
Python
Python (3.4.3)
py
Accepted
17
3060
116
n,l = map(int,input().split()) list = sorted([input() for i in range(n)]) for text in list: print(text, 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,210
s075101699
p04044
u143278390
1574278264
Python
Python (3.4.3)
py
Accepted
18
3060
119
n,l =[int(i) for i in input().split()] lst=[] for i in range(n): lst.append(input()) 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,214,211
s064341050
p04044
u864197622
1574223747
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,212
s870309529
p04044
u234186715
1574199399
Python
Python (3.4.3)
py
Accepted
17
3060
136
a = list(map(int, input().split())) s = [input() for i in range(a[0])] newa= sorted(s) moji ='' for x in newa: 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,214,213
s973863710
p04044
u375282392
1574195373
Python
Python (3.4.3)
py
Accepted
17
3060
106
n,l = map(int,input().split()) s = [input() for i in range(n)] ss = sorted(s) ans = ''.join(ss) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,214,214
s168819495
p04044
u211025746
1574192310
Python
Python (3.4.3)
py
Accepted
24
3188
446
NL=input().split() N=int(NL[0]) L=int(NL[1]) S=[] rank=[] for i in range(N): S.append(input()) rank.append(0) temp=[] for i in range(N): for j in range(N): if(S[i]<S[j]): temp.append(int(1)) else: temp.append(int(0)) for i in range(N*N): a=i%N rank[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,215
s602389341
p04044
u836737505
1574140165
Python
Python (3.4.3)
py
Accepted
17
3060
113
a = [] N, L = map(int, input().split()) for i in range(N): a.append(input()) 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,216