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
s203474748
p04044
u473905774
1598990556
Python
PyPy3 (7.3.0)
py
Accepted
65
62412
100
a,b = list(map(int,input().split(" "))) l = [input() for i in range(a)] 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,212,717
s062555230
p04044
u244416763
1598962022
Python
Python (3.8.2)
py
Accepted
27
9160
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,212,718
s792034230
p04044
u161134623
1598938651
Python
Python (3.8.2)
py
Accepted
29
9152
116
n, l = map(int, input().split()) arr = [] for i in range(n): arr.append(input()) arr.sort() print("".join(arr))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,719
s625681290
p04044
u395620499
1598928817
Python
Python (3.8.2)
py
Accepted
28
9000
125
n, l = map(int, input().split()) ss = [input() for i in range(n)] ss = sorted(ss) for s in ss: 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,212,720
s029146133
p04044
u556358547
1598926665
Python
PyPy3 (7.3.0)
py
Accepted
65
62460
216
# vim: fileencoding=utf-8 def main(): n, l = map(int, input().split()) li = [] for i in range(n): li.append(input()) li.sort() print("".join(li)) 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,212,721
s628660879
p04044
u178647828
1598919109
Python
Python (3.8.2)
py
Accepted
30
9180
92
N, L = map(int, input().split()) Ss = [input() for i in range(N)] print(''.join(sorted(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,212,722
s309205580
p04044
u909716307
1598914451
Python
Python (3.8.2)
py
Accepted
26
9040
109
n,_=map(int,input().split()) l=[input() for _ in range(n)] for s in sorted(l): 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,212,723
s959690588
p04044
u282813849
1598913633
Python
Python (3.8.2)
py
Accepted
27
9164
119
N, L = [int(a) for a in input().split()] S = [] for i in range(N): S.append(input()) S = sorted(S) print(*S,sep="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,724
s442756451
p04044
u460745860
1598908282
Python
Python (3.8.2)
py
Accepted
24
9132
100
# ABC042 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,212,725
s510078789
p04044
u557216536
1598905853
Python
Python (3.8.2)
py
Accepted
26
9156
204
# スペース区切りの整数の入力 n, l = map(int, input().split()) data = [] for i in range(n): data.append(input()) l = sorted(data) 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,212,726
s966249983
p04044
u578958929
1598873653
Python
PyPy3 (7.3.0)
py
Accepted
65
62992
173
N, L = map(int, input().split()) S = ["" for _ in range(N)] for i in range(N): S[i] = input() S = sorted(S) ans = "" for i in range(len(S)): 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,212,727
s218925023
p04044
u073606136
1598842649
Python
Python (3.8.2)
py
Accepted
28
8992
179
# coding: utf-8 a, b= map(int,input().split()) table = [] ans = "" for i in range(a): table.append(input()) list.sort(table) for i in range(a): ans += table[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,212,728
s599824152
p04044
u344383000
1598841550
Python
Python (3.8.2)
py
Accepted
28
9024
109
n,l = map(int,input().split()) a = list() for i in range(n): a.append(input()) 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,212,729
s218872947
p04044
u980753441
1598833285
Python
Python (3.8.2)
py
Accepted
28
9104
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,212,730
s075433435
p04044
u306412379
1598831453
Python
Python (3.8.2)
py
Accepted
31
9044
90
N, L = map(int, input().split()) S = sorted([input() for i in range(N)]) print(''.join(S))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,731
s737067886
p04044
u804800128
1598827137
Python
Python (3.8.2)
py
Accepted
27
9160
556
import sys input = sys.stdin.readline def find_where( List , word ): flag = 1 for i , list_i in enumerate(List): if list_i > word: flag = 0 break return i + flag def main(): n , l = map( int, input().split() ) I = [] for i in range(n): s = str(input()) ...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,732
s321651564
p04044
u050912188
1598801576
Python
Python (3.8.2)
py
Accepted
27
9104
142
a, b = map(int, input().split()) list = [] for i in range(a): list.append(input()) list1 = sorted(list) for i in list1: 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,212,733
s177962321
p04044
u244836567
1598798544
Python
Python (3.8.2)
py
Accepted
30
9132
120
a,b=input().split() a=int(a) b=int(b) c=[input() for i in range(a)] c.sort() d="" for k in range(a): d=d+c[k] 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,212,734
s391861276
p04044
u177125607
1598796849
Python
Python (3.8.2)
py
Accepted
29
9096
90
n, l = map(int, input().split()) S = [input() for _ in range(n)] print(*sorted(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,212,735
s426374082
p04044
u848861682
1598717056
Python
Python (3.8.2)
py
Accepted
27
8976
149
#!/usr/bin/env python3 def main(): N, L = map(int, input().split()) S = [input() for _ in range(N)] print("".join(sorted(S))) 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,212,736
s723321714
p04044
u038107109
1598653970
Python
Python (3.8.2)
py
Accepted
28
9044
126
N, L = map(int, input().split()) str_list = [] for i in range(N): str_list.append(input()) print("".join(sorted(str_list)))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,737
s485499839
p04044
u589969467
1598649694
Python
Python (3.8.2)
py
Accepted
27
9044
178
n,l = map(int,input().split()) s_list = [] for i in range(n): s_list.append(str(input())) s_sort = sorted(s_list) ans = '' for i in range(n): ans += s_sort[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,212,738
s755700559
p04044
u439881679
1598632029
Python
Python (3.8.2)
py
Accepted
31
9340
375
# bsdk idhar kya dekhne ko aaya hai, khud kr!!! # import math # from itertools import * # import random # import calendar import datetime # import webbrowser # f = open("input.txt", 'r') # g = open("output.txt", 'w') # n, m = map(int, f.readline().split()) n, k = map(int, input().split()) arr = [] for i in range(n): ...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,739
s599310910
p04044
u840037795
1598577988
Python
PyPy3 (7.3.0)
py
Accepted
69
62272
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,212,740
s741931608
p04044
u720558413
1598542881
Python
Python (3.8.2)
py
Accepted
25
9180
118
N,L = map(int,input().split()) A = [] for n in range(N): a = input() A.append(a) A.sort() print(''.join(A))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,741
s670084961
p04044
u816631826
1598504765
Python
Python (3.8.2)
py
Accepted
26
9112
120
n,l=map(int,input().split()) a=[] for i in range(0,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,212,742
s881278906
p04044
u205042576
1598497782
Python
Python (3.8.2)
py
Accepted
29
9112
111
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,212,743
s034996130
p04044
u642528832
1598497177
Python
Python (3.8.2)
py
Accepted
29
9148
84
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,212,744
s289253202
p04044
u164776089
1598490281
Python
Python (3.8.2)
py
Accepted
30
9080
101
n,l = list(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,212,745
s175546496
p04044
u465652095
1598478499
Python
Python (3.8.2)
py
Accepted
29
9064
136
N, L = map(int,input().split()) w = [input() for i in range(N)] ans = "" s_w = sorted(w) for i in range(N): ans += s_w[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,212,746
s761515760
p04044
u869790980
1598452565
Python
PyPy2 (7.3.0)
py
Accepted
62
64492
90
n,l = map(int, raw_input().split()) print ''.join(sorted([raw_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,212,747
s246408395
p04044
u972474792
1598407847
Python
PyPy3 (7.3.0)
py
Accepted
63
62780
138
N,L=map(int,input().split()) S=[] for i in range(N): S.append(input()) S.sort() Ans=S[0] for i in range(1,N): Ans+=S[i] print(Ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,748
s024812802
p04044
u120651703
1598382282
Python
Python (3.8.2)
py
Accepted
28
9096
140
N, L = [int(x) for x in input().split()] S_list = [] for i in range(N): S_list.append(input()) S = ''.join(sorted(S_list)) 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,212,749
s438618864
p04044
u604839890
1598366876
Python
Python (3.8.2)
py
Accepted
28
9108
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,212,750
s280848960
p04044
u063596417
1598327161
Python
Python (3.8.2)
py
Accepted
30
9116
160
def main(): n, _ = map(int, input().split()) s = [input() for _ in range(n)] s.sort() print(''.join(s)) if __name__ == '__main__': main()
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,751
s191541417
p04044
u510331904
1598321439
Python
Python (3.8.2)
py
Accepted
29
9084
100
N, L = [int(i) for i in 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,212,752
s948729926
p04044
u198336369
1598310031
Python
Python (3.8.2)
py
Accepted
28
9164
158
n, l = map(int, input().split()) s = list() for i in range(n): s.append(str(input())) s.sort() ans = '' for j in range(n): ans = 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,212,753
s702606208
p04044
u666550725
1598308193
Python
PyPy3 (7.3.0)
py
Accepted
64
62616
130
N, L = map(int, input().split()) S = [] for i in range(N): S.append(input()) S.sort() ans = "" for s in 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,212,754
s830152613
p04044
u607563136
1598283874
Python
Python (3.8.2)
py
Accepted
27
9160
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,212,755
s623895649
p04044
u668271522
1598276947
Python
Python (3.8.2)
py
Accepted
28
9176
162
N,L = map(int,input().split()) moji = [] for i in range(N): moji.append(input()) sort_moji = sorted(moji) ans = '' for i in sort_moji: 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,212,756
s847813328
p04044
u201382544
1598240772
Python
Python (3.8.2)
py
Accepted
26
9060
143
n,l = map(int,input().split()) s = [] for i in range(n): s.append(input()) sort_s = sorted(s) ans = '' for i in sort_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,212,757
s320794025
p04044
u202560873
1598226684
Python
Python (3.8.2)
py
Accepted
27
9076
175
N, L = [int(x) for x in input().split()] seq = [] for i in range(N): seq.append(input()) seq = sorted(seq) ans = '' for i in range(N): ans += seq[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,212,758
s811987693
p04044
u536017058
1598217129
Python
PyPy3 (7.3.0)
py
Accepted
63
62608
141
N, L = map(int, input().split()) S = [input() for i in range(N)] S.sort() S2 = [] for i in range(N): S2.append(S[i]) print(*(S2), 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,212,759
s186322243
p04044
u997134361
1598213345
Python
Python (3.8.2)
py
Accepted
31
9092
187
def compare_strings(s1, s2): if s1 < s2: return True return False n, l = map(int, input().split()) strings = [input() for i in range(n)] 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,212,760
s321905052
p04044
u432453907
1598209183
Python
Python (3.8.2)
py
Accepted
29
9072
143
N,L=map(int,input().split()) ans="" S=[] for i in range(N): S.append(str(input())) S=sorted(S) 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,212,761
s028548079
p04044
u314188085
1598206230
Python
Python (3.8.2)
py
Accepted
27
9120
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,212,762
s956008711
p04044
u658181634
1598202534
Python
Python (3.8.2)
py
Accepted
29
9104
144
nl = list(map(lambda x: int(x), input().split(" "))) n = nl[0] l = nl[1] strs = [input() for i in range(n)] strs.sort() print(''.join(strs))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,763
s410775774
p04044
u249987458
1598184632
Python
Python (3.8.2)
py
Accepted
27
9164
116
n,l = map(int, input().split()) s = [str(input()) for i in range(n)] s.sort() w = "" for h in s: w += h print(w)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,764
s937088573
p04044
u982471399
1598152615
Python
Python (3.8.2)
py
Accepted
26
9120
147
N,L=list(map(int,input().split())) S=[] B=[] for n in range(N): S.append(input()) B=sorted(S) C="" for n in range(N): C=C+(B[n]) 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,212,765
s310660481
p04044
u771541471
1598151034
Python
Python (3.8.2)
py
Accepted
35
9036
143
N,L=map(int,input().split()) inp=[] for i in range(N): inp.append(input()) inp.sort() ans="" for i in range(N): ans+=inp[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,212,766
s526911498
p04044
u468972478
1598142712
Python
Python (3.8.2)
py
Accepted
25
9184
124
n, l = map(int, input().split()) a = [] for i in range(n): a.append(input()) a.sort() b = "" for i in a: b += i 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,212,767
s109317652
p04044
u991542950
1598140282
Python
PyPy3 (7.3.0)
py
Accepted
63
62112
91
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,212,768
s280805144
p04044
u582084082
1598135822
Python
Python (3.8.2)
py
Accepted
28
8984
107
n, l = map(int, input().split()) a = [] for _ in range(n): a.append(input()) a.sort() print(''.join(a))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,769
s324511118
p04044
u787059958
1598135759
Python
Python (3.8.2)
py
Accepted
24
9052
120
N, L = map(int, input().split()) A = [] for _ in range(N): s = input() A.append(s) A.sort() print(''.join(A))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,770
s462204852
p04044
u653837719
1598132678
Python
PyPy3 (7.3.0)
py
Accepted
64
62716
118
n, l = map(int, input().split()) s = [input() for _ in range(n)] s.sort() for string in s: print(string, 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,212,771
s202556671
p04044
u807772568
1598128184
Python
PyPy3 (7.3.0)
py
Accepted
74
66092
1,390
import sys,collections as cl,bisect as bs sys.setrecursionlimit(100000) input = sys.stdin.readline mod = 10**9+7 Max = sys.maxsize def l(): #intのlist return list(map(int,input().split())) def m(): #複数文字 return map(int,input().split()) def onem(): #Nとかの取得 return int(input()) def s(x): #圧縮 a = [] if 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,212,772
s813492017
p04044
u827765795
1598127768
Python
Python (3.8.2)
py
Accepted
27
9164
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,212,773
s969246716
p04044
u955248595
1598084184
Python
Python (3.8.2)
py
Accepted
27
9096
99
N,L = (int(T) for T in input().split()) S = sorted([input() for T in range(0,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,212,774
s766702490
p04044
u940652437
1598052384
Python
Python (3.8.2)
py
Accepted
30
9104
198
N,L = map(int,input().split()) str_list=[] final_str = "" for i in range(N): str_list.append(input()) new_list = sorted(str_list) for n in range(N): final_str += new_list[n] print(final_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,212,775
s431609691
p04044
u821588465
1598029434
Python
Python (3.8.2)
py
Accepted
25
9164
94
N, L = map(int, input().split()) S = sorted(list(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,212,776
s154865464
p04044
u416758623
1598027184
Python
Python (3.8.2)
py
Accepted
28
9172
117
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,212,777
s358037033
p04044
u506996808
1597974228
Python
Python (3.8.2)
py
Accepted
27
9176
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,212,778
s217925709
p04044
u070201429
1597887159
Python
PyPy3 (7.3.0)
py
Accepted
65
61828
117
n, l = map(int, input().split()) lis = [] for _ in range(n): lis.append(input()) lis.sort() print(''.join(lis))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,779
s499682245
p04044
u411923565
1597862619
Python
Python (3.8.2)
py
Accepted
28
9096
95
N,L = map(int,input().split()) S = [input() for _ in range(N)] S = sorted(S) print(''.join(S))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,780
s710384639
p04044
u813387707
1597844548
Python
Python (3.8.2)
py
Accepted
29
9048
108
n, l = [int(x) for x in input().split()] s_list = sorted([input() for _ in range(n)]) 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,212,781
s663227464
p04044
u693694535
1597802433
Python
Python (3.8.2)
py
Accepted
29
9184
123
N,L=map(int,input().split()) S=[] for i in range(N): S.append(input()) S.sort() A='' for i in S: A+=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,212,782
s958518167
p04044
u929793345
1597795021
Python
Python (3.8.2)
py
Accepted
30
9176
126
n, l = map(int, input().split()) s = [] for i in range(n): s.append(input()) 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,212,783
s006625492
p04044
u969708690
1597777202
Python
Python (3.8.2)
py
Accepted
29
9048
112
R=list() N,L=map(int,input().split()) for i in range(N): S=input() R.append(S) R=sorted(R) print("".join(R))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,784
s672321583
p04044
u310381103
1597729439
Python
Python (3.8.2)
py
Accepted
28
9108
128
n,l=map(int,input().split()) s=[] ss='' for i in range(n): s.append(input()) s=sorted(s) for i in range(n): ss+=s[i] print(ss)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,785
s330841596
p04044
u070423038
1597721646
Python
Python (3.8.2)
py
Accepted
29
9096
131
s = [int(x) for x in input().split()] s_list = [] for i in range(s[0]): s_list.append(input()) print(''.join(sorted(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,212,786
s831843529
p04044
u506996808
1597714945
Python
Python (3.8.2)
py
Accepted
29
9076
85
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,212,787
s234277795
p04044
u629607744
1597700961
Python
Python (3.8.2)
py
Accepted
26
9120
126
n,l = map(int,input().split()) s = [] for _ in range(n): S = str(input()) s.append(S) s.sort() ans = "".join(s) print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,788
s680709900
p04044
u106778233
1597698340
Python
Python (3.8.2)
py
Accepted
29
9128
155
n,l = map(int,input().split()) s = [] for i in range(n) : s.append(str(input())) s.sort() ans = "" for i in range(n): ans = ans + s[i] print(ans)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,789
s809428925
p04044
u863370423
1597671095
Python
Python (3.8.2)
py
Accepted
28
9160
137
n, m = map(int, input().split()) li = [] for i in range(n): s = input() li.append(s) li.sort() for i in li: 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,212,790
s220395548
p04044
u793028948
1597671070
Python
Python (3.8.2)
py
Accepted
28
9100
137
n, m = map(int, input().split()) li = [] for i in range(n): s = input() li.append(s) li.sort() for i in li: 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,212,791
s972003549
p04044
u391819434
1597627249
Python
Python (3.8.2)
py
Accepted
28
9100
79
N,L=map(int,input().split()) print(''.join(sorted([input()for _ in range(N)])))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,792
s624180080
p04044
u014386369
1597616225
Python
Python (3.8.2)
py
Accepted
31
9064
103
N,L=map(int,input().split()) S=[] for _ in range(N): S.append(input()) S.sort() print(''.join(S))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,793
s292004095
p04044
u063596417
1597534809
Python
PyPy3 (7.3.0)
py
Accepted
63
62444
92
n, l = map(int, input().split()) s = [input() for _ in range(n)] s.sort() print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,794
s298126504
p04044
u650932312
1597500296
Python
Python (3.8.2)
py
Accepted
31
9116
108
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,212,795
s570782385
p04044
u172748267
1597477677
Python
Python (3.8.2)
py
Accepted
27
9076
83
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,212,796
s819916855
p04044
u190866453
1597462584
Python
Python (3.8.2)
py
Accepted
31
9176
103
n, l = map(int, input().split()) s = list(input() for i in range(n)) s.sort() x = "".join(s) print(x)
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,797
s581512544
p04044
u481250941
1597452159
Python
Python (3.8.2)
py
Accepted
77
16176
828
# # abc042 b # import sys from io import StringIO import unittest class TestClass(unittest.TestCase): def assertIO(self, input, output): stdout, stdin = sys.stdout, sys.stdin sys.stdout, sys.stdin = StringIO(), StringIO(input) resolve() sys.stdout.seek(0) out = sys.stdout.r...
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,798
s919585919
p04044
u357751375
1597437082
Python
Python (3.8.2)
py
Accepted
25
9104
98
n,l = map(int,input().split()) s = list(input() for i in range(n)) s = sorted(s) print(''.join(s))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,799
s732898292
p04044
u107915058
1597426007
Python
Python (3.8.2)
py
Accepted
26
9152
134
N, L = map(int, input().split()) S = sorted(list(input() for i in range(N))) ans = str() 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,212,800
s707530017
p04044
u704102636
1597411078
Python
Python (3.8.2)
py
Accepted
27
9128
140
N, LEN = list(map(int, input().split())) a = [] for i in range(N): s = input() a.append(s) b = sorted(a) ans = "".join(b) 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,212,801
s419721467
p04044
u103341055
1597382331
Python
Python (3.8.2)
py
Accepted
29
9048
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,212,802
s255857031
p04044
u394721319
1597368925
Python
Python (3.8.2)
py
Accepted
28
9144
111
N,L = [int(i) for i in input().split()] S = [input() for _ in range(N)] S.sort() [print(i,end='') for i in 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,212,803
s471030592
p04044
u328510800
1597368718
Python
Python (3.8.2)
py
Accepted
31
9152
100
n, _ = [int(x) for x in input().split()] ss = sorted([input() for _ in range(n)]) print(''.join(ss))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,804
s101364283
p04044
u436733497
1597366706
Python
PyPy3 (7.3.0)
py
Accepted
64
62432
96
n, l = map(int, input().split()) k = [input() for _ in range(n)] s = sorted(k) 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,212,805
s562023597
p04044
u359358631
1597354436
Python
Python (3.8.2)
py
Accepted
29
9116
168
def main(): N, L = map(int, input().split()) S = [] for _ in range(N): S.append(input()) S.sort() print("".join(S)) if __name__ == "__main__": main()
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,806
s185533238
p04044
u190195462
1597343473
Python
Python (3.8.2)
py
Accepted
27
9080
135
N, L = map(int, input().split()) C = [input() for i in range(N)] C.sort() i=0 while i < N: print(C[i] , end ="") i += 1
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,807
s455474168
p04044
u349449706
1597293176
Python
PyPy3 (7.3.0)
py
Accepted
65
62952
119
N, L = map(int, input().split()) S = [input() for _ in range(N)] S.sort() ans = "" for s in 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,212,808
s963876260
p04044
u089142196
1597292348
Python
Python (3.8.2)
py
Accepted
29
9168
132
N, L = map(int, input().split()) C = [input() for i in range(N)] C.sort() i=0 while i < N: print(C[i] , end ="") i += 1
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,809
s930213322
p04044
u378299699
1597283300
Python
Python (3.8.2)
py
Accepted
27
9044
90
N, L = map(int, input().split()) S = sorted([input() for i in range(N)]) print("".join(S))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,810
s472804640
p04044
u569776981
1597281128
Python
Python (3.8.2)
py
Accepted
30
9168
155
N, L = map(int,input().split()) A = [] for i in range(N): S = input() A.append(S) A = sorted(A) 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,212,811
s218541856
p04044
u344888046
1597263024
Python
Python (3.8.2)
py
Accepted
29
8980
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,212,812
s221753733
p04044
u674588203
1597260016
Python
Python (3.8.2)
py
Accepted
27
9108
205
# AtCoder Beginner Contest 042 # B - 文字列大好きいろはちゃんイージー N,L=map(int,input().split()) arr=[] for i in range (N): a=input() arr.append(a) arr.sort() print("".join(arr))
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,813
s460978234
p04044
u673173160
1597233673
Python
Python (3.8.2)
py
Accepted
27
9064
169
n, l = map(int, input().split()) sl = [] for i in range(n): s = input() sl.append(s) sl.sort() #print(sl) ans = "" for i in range(n): ans += sl[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,212,814
s272902535
p04044
u066869486
1597200440
Python
Python (3.8.2)
py
Accepted
30
9124
131
n,l = map(int,input().split()) string_list=[input() for i in range(n)] string_list.sort() for X in string_list: print(X, end="")
p04044
<span class="lang-en"> <p>Score : <var>200</var> points</p> <div class="part"> <section> <h3>Problem Statement</h3><p>Iroha has a sequence of <var>N</var> strings <var>S_1, S_2, ..., S_N</var>. The length of each string is <var>L</var>.</p> <p>She will concatenate all of the strings in some order, to produce a long str...
3 3 dxx axx cxx
axxcxxdxx
1,212,815
s773017986
p04044
u683117905
1597155375
Python
Python (3.8.2)
py
Accepted
27
9180
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,212,816