s_id
string
p_id
string
u_id
string
date
string
language
string
original_language
string
filename_ext
string
status
string
cpu_time
string
memory
string
code_size
string
code
string
error
string
stdout
string
s603884990
p02393
u865281338
1511011028
Python
Python3
py
Runtime Error
0
0
146
def narabekae() list = [int(i) for i in input().split()] list.reverse() print list if __name__= '__main__' : narabikae()
File "/tmp/tmpc5sxhuav/tmplgp7rqp9.py", line 1 def narabekae() ^ SyntaxError: expected ':'
s719880645
p02393
u865281338
1511011243
Python
Python3
py
Runtime Error
0
0
149
def narabekae() : list = [int(i) for i in input().split()] list.reverse() print list if __name__== '__main__' : narabikae()
File "/tmp/tmpg84wg75c/tmp5iy1fs24.py", line 5 print list ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s817780409
p02393
u865281338
1511012569
Python
Python3
py
Runtime Error
0
0
170
def narabekae() : a, b, c = [int(i) for i in input().split()] print(max(a,b,c) median(a,b,c) min(a,b,c)) if __name__== '__main__' : narabikae()
File "/tmp/tmpi2tqswxo/tmpej1igdub.py", line 5 print(max(a,b,c) median(a,b,c) min(a,b,c)) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s212006343
p02393
u865281338
1511012651
Python
Python3
py
Runtime Error
0
0
173
def narabekae???() : a, b, c = [int(i) for i in input().split()] print???(max(a,b,c) median(a,b,c) min(a,b,c)) if __name__=='__main__': narabikae()
File "/tmp/tmpx9xtsftx/tmpc2ycu9he.py", line 1 def narabekae???() : ^ SyntaxError: expected '('
s491779590
p02393
u865281338
1511012876
Python
Python3
py
Runtime Error
0
0
173
def narabekae???() : a, b, c = [int(i) for i in input().split()] print???(max(a,b,c) median(a,b,c) min(a,b,c)) if __name__=='__main__': narabikae()
File "/tmp/tmp45s9ulit/tmpkppzab83.py", line 1 def narabekae???() : ^ SyntaxError: expected '('
s031308008
p02393
u889593139
1512101948
Python
Python3
py
Runtime Error
0
0
76
a = map(int, input().split(' ')) sorted_a = sort(a) print(a[0], a[1], a[2])
Traceback (most recent call last): File "/tmp/tmplcmy__v0/tmpz6xl76w8.py", line 1, in <module> a = map(int, input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s412176634
p02393
u150984829
1513048998
Python
Python3
py
Runtime Error
0
0
31
map(int,input().split()).sort()
Traceback (most recent call last): File "/tmp/tmpcea5vpio/tmp1mip5bdd.py", line 1, in <module> map(int,input().split()).sort() ^^^^^^^ EOFError: EOF when reading a line
s216043047
p02393
u150984829
1513111154
Python
Python3
py
Runtime Error
0
0
37
print(sort(map(int,input().split())))
Traceback (most recent call last): File "/tmp/tmpgmmiq2p6/tmppe82wmn8.py", line 1, in <module> print(sort(map(int,input().split()))) ^^^^ NameError: name 'sort' is not defined. Did you mean: 'sorted'?
s567190897
p02393
u830563109
1513852888
Python
Python3
py
Runtime Error
0
0
47
a,b,c = int(input()) abc = [a,b,c] abc.sort() a
Traceback (most recent call last): File "/tmp/tmponw4te03/tmp_5cgt924.py", line 1, in <module> a,b,c = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s409433784
p02393
u830563109
1513853056
Python
Python3
py
Runtime Error
0
0
72
a = input() b = input() c = input() abc = [a,b,c] abc.sort() print(abc)
Traceback (most recent call last): File "/tmp/tmpcht3dtfd/tmp3q22scyl.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s733026697
p02393
u841567836
1515170139
Python
Python3
py
Runtime Error
0
0
146
if __name__ == '__main__': a, b, c = input().split() a, b, c = int(a), int(b), int(c) ans = [a, b, c].sorted() print(ans[0], ans[1], ans[2])
Traceback (most recent call last): File "/tmp/tmp272157l0/tmpmf8cd37c.py", line 2, in <module> a, b, c = input().split() ^^^^^^^ EOFError: EOF when reading a line
s609521755
p02393
u303842929
1515548347
Python
Python3
py
Runtime Error
0
0
343
n = input().split() num = [0 for i in range(len(n))] for i in range(len(n)): num[i] = int(n[i]) for i in reversed(range(len(num))): for j in range(i): ¦ if num[j] > num[j + 1]: ¦ ¦ tmp = num[j] ¦ ¦ num[j] = num[j + 1] ¦ ¦ num[j + 1] = tmp for i in range(len(n)): print(str(num[i]),end=" ")
File "/tmp/tmpxcaaygpz/tmp72idz9s_.py", line 7 ¦ if num[j] > num[j + 1]: ^ SyntaxError: invalid character '¦' (U+00A6)
s548280407
p02393
u179070318
1515919533
Python
Python3
py
Runtime Error
0
0
71
a = [int(x) for x in input().split( )] a.sort() print(a[0] a[1] a[2])
File "/tmp/tmppl1dh30a/tmpn2we0buj.py", line 3 print(a[0] a[1] a[2]) ^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s983292330
p02393
u179070318
1515919700
Python
Python3
py
Runtime Error
0
0
78
a = [int(x) for x in input().split( )] a.sort() print(' ',join(map(str,a)))
Traceback (most recent call last): File "/tmp/tmpn17jqb_m/tmp5k4fcj1m.py", line 1, in <module> a = [int(x) for x in input().split( )] ^^^^^^^ EOFError: EOF when reading a line
s171518153
p02393
u299257375
1516009386
Python
Python3
py
Runtime Error
0
0
136
num_sorted = list(map(int, input().split())) print("{} {} {}".format(num_sorted.sort()[0], num_sorted.sort()[1], num_sorted.sort()[2]))
Traceback (most recent call last): File "/tmp/tmpab79dnz4/tmp4gbwcxrl.py", line 1, in <module> num_sorted = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s410888262
p02393
u639135641
1516529139
Python
Python3
py
Runtime Error
0
0
366
#Branch on Condition - Sorting Three Numbers num=list(map(int,input().split())) bubble_sort(num) print(num) def bubble_sort(arr): change = True while change: change = False for i in range(len(arr) - 1): if arr[i] > arr[i + 1]: arr[i], arr[i + 1] = arr[i + 1], arr[i] change = True return arr
Traceback (most recent call last): File "/tmp/tmp1tmpyzuy/tmpu073em4h.py", line 3, in <module> num=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s208747482
p02393
u639135641
1516530765
Python
Python3
py
Runtime Error
0
0
383
#Branch on Condition - Sorting Three Numbers num=list(map(int,input().split())) bubble_sort(num) print(num[0],num[1],num[2]) def bubble_sort(arr): change = True while change: change = False for i in range(len(arr) - 1): if arr[i] > arr[i + 1]: arr[i], arr[i + 1] = arr[i + 1], arr[i] change = True return arr
Traceback (most recent call last): File "/tmp/tmpv3qdnlsa/tmp89n3w5dm.py", line 3, in <module> num=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s188999034
p02393
u639135641
1516530779
Python
Python3
py
Runtime Error
0
0
383
#Branch on Condition - Sorting Three Numbers num=list(map(int,input().split())) bubble_sort(num) print(num[0],num[1],num[2]) def bubble_sort(arr): change = True while change: change = False for i in range(len(arr) - 1): if arr[i] > arr[i + 1]: arr[i], arr[i + 1] = arr[i + 1], arr[i] change = True return arr
Traceback (most recent call last): File "/tmp/tmpsciios5i/tmpsakiy62b.py", line 3, in <module> num=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s916045667
p02393
u536089081
1517522926
Python
Python3
py
Runtime Error
0
0
77
num = map(int, input().split(' ')) num.sort() print(' '.join(map(int, num)))
Traceback (most recent call last): File "/tmp/tmp69au0n1j/tmpcgb0cf8t.py", line 1, in <module> num = map(int, input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s464700171
p02393
u536089081
1517523210
Python
Python3
py
Runtime Error
0
0
83
num = list(map(int, input().split(' '))) num.sort() print(' '.join(map(int, num)))
Traceback (most recent call last): File "/tmp/tmp7xtfwznx/tmp77tqbbm8.py", line 1, in <module> num = list(map(int, input().split(' '))) ^^^^^^^ EOFError: EOF when reading a line
s801095658
p02393
u798565376
1517682042
Python
Python3
py
Runtime Error
0
0
104
l = list(map(int, input().split())) sorted_list = l.sorted() print('{} {} {}'.format(l[0], l[1], l[2])
File "/tmp/tmpzqztvyj9/tmpjgvpizgq.py", line 3 print('{} {} {}'.format(l[0], l[1], l[2]) ^ SyntaxError: '(' was never closed
s851139296
p02393
u798565376
1517682057
Python
Python3
py
Runtime Error
0
0
103
l = list(map(int, input().split())) sorted_list = sorted(l) print('{} {} {}'.format(l[0], l[1], l[2])
File "/tmp/tmpua4gy2tb/tmprilenmp3.py", line 3 print('{} {} {}'.format(l[0], l[1], l[2]) ^ SyntaxError: '(' was never closed
s746494179
p02393
u139687801
1517682748
Python
Python3
py
Runtime Error
0
0
59
a = [int(x) for x in input().split(',')] a.sort() print(a)
Traceback (most recent call last): File "/tmp/tmp6m4sbub7/tmp135bg4h8.py", line 1, in <module> a = [int(x) for x in input().split(',')] ^^^^^^^ EOFError: EOF when reading a line
s267364738
p02393
u459418423
1517889124
Python
Python3
py
Runtime Error
0
0
67
a,b,c = map(int, input().split()) print(' '.join(sorted([a,b,c])))
Traceback (most recent call last): File "/tmp/tmpnst4z5oa/tmplcle0ppp.py", line 1, in <module> a,b,c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s625766427
p02393
u671760895
1518537932
Python
Python
py
Runtime Error
0
0
84
l = map(int, raw_input().split()) l.sort() print(str(l[0]+' '+strl[1]+' '+str[2])
File "/tmp/tmpjz4ema_s/tmphtq697oq.py", line 5 print(str(l[0]+' '+strl[1]+' '+str[2]) ^ SyntaxError: '(' was never closed
s071117868
p02393
u373340964
1519107477
Python
Python3
py
Runtime Error
0
0
109
a = map(int, input()) a.sort() maped_list = map(str, a) mojiretu = ','.join(maped_list) print(mojiretu)
Traceback (most recent call last): File "/tmp/tmpo29kkr52/tmp7epzwigh.py", line 1, in <module> a = map(int, input()) ^^^^^^^ EOFError: EOF when reading a line
s068992927
p02393
u613534067
1520130699
Python
Python3
py
Runtime Error
0
0
53
a = list(map(int, input().split())) print(*a.sort())
Traceback (most recent call last): File "/tmp/tmpw4xivk8v/tmpqmc7tlul.py", line 1, in <module> a = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s529996790
p02393
u613534067
1520130948
Python
Python3
py
Runtime Error
0
0
64
a = list(map(int, input().split())) print(*i) for i in a.sort()
File "/tmp/tmp5diy7hoj/tmp1a51b9gs.py", line 2 print(*i) for i in a.sort() ^^^ SyntaxError: invalid syntax
s980569282
p02393
u613534067
1520130964
Python
Python3
py
Runtime Error
0
0
66
a = list(map(int, input().split())) [print(*i) for i in a.sort()]
Traceback (most recent call last): File "/tmp/tmpxc_c1acq/tmpfnxqi61y.py", line 1, in <module> a = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s326283920
p02393
u005739171
1520174608
Python
Python3
py
Runtime Error
0
0
336
a, b, c = map(int, input().split()) list1 = [a,b,c] list2 = sorted(list1) for i in range(len(list2)): # lenでリストの要素数を求める, rangeにループ回数(回数分の要素のリストが戻り値), inはリストをとる print '%d, ' % (list2[i]), # print文の末尾に「,」を付けると改行しない
File "/tmp/tmpxk3wo94_/tmp5qnfvb7w.py", line 7 print '%d, ' % (list2[i]), ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s799757740
p02393
u017435045
1520749676
Python
Python3
py
Runtime Error
0
0
127
ns=list(map(int,input().split())) ns.sort() print(ns[0],ns[1],ns[2]) a=list(map(int, input())) a.sort() print(a[0],a[1],a[2])
Traceback (most recent call last): File "/tmp/tmpu5liama0/tmpmxd0gj3o.py", line 1, in <module> ns=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s963368577
p02393
u017435045
1520749682
Python
Python3
py
Runtime Error
0
0
58
a=list(map(int, input())) a.sort() print(a[0],a[1],a[2])
Traceback (most recent call last): File "/tmp/tmps4zz5jg9/tmpllbs3q9l.py", line 2, in <module> a=list(map(int, input())) ^^^^^^^ EOFError: EOF when reading a line
s663632018
p02393
u017435045
1520749694
Python
Python3
py
Runtime Error
0
0
58
a=list(map(int, input())) a.sort() print(a[0],a[1],a[2])
Traceback (most recent call last): File "/tmp/tmpxkksudpo/tmp8hhb2nmw.py", line 2, in <module> a=list(map(int, input())) ^^^^^^^ EOFError: EOF when reading a line
s826359431
p02393
u507758132
1521098761
Python
Python3
py
Runtime Error
0
0
151
a,b,c = map(int,input().split()) if a < b : if b < c: print(a,b,c) else: print(a,c,b) else: if a < c: print(b,a,c) else: print(b,c,a)
File "/tmp/tmpldwa3vkr/tmp9snxioa5.py", line 11 else: ^^^^ SyntaxError: invalid syntax
s028138705
p02393
u566311709
1521121651
Python
Python3
py
Runtime Error
0
0
59
l = map(int, input().split()) l.sorted() print ','.join(l)
File "/tmp/tmpjvrlsx3y/tmp6ccgj7pd.py", line 3 print ','.join(l) ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s672037828
p02393
u566311709
1521121736
Python
Python3
py
Runtime Error
0
0
63
l = list(map(int, input().split())) l.sort() print ','.join(l)
File "/tmp/tmpw237kzer/tmpkp_zjeoh.py", line 3 print ','.join(l) ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s351812145
p02393
u566311709
1521121788
Python
Python3
py
Runtime Error
0
0
63
l = list(map(int, input().split())) l.sort() print ' '.join(l)
File "/tmp/tmp44twfrym/tmpmqjoy79h.py", line 3 print ' '.join(l) ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s585059672
p02393
u566311709
1521121924
Python
Python3
py
Runtime Error
0
0
72
l = list(map(int, input().split())) print ' '.join(map(str, sorted(l)))
File "/tmp/tmpqj6n4xti/tmptzroc4cj.py", line 2 print ' '.join(map(str, sorted(l))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s210931201
p02393
u648117624
1521360079
Python
Python3
py
Runtime Error
0
0
108
#coding: UTF-8 a,b,c=[int(x) for x in input().split()] numlist = [a,b,c] numlist.sorted() print(numlist)
Traceback (most recent call last): File "/tmp/tmpi60tmmzv/tmp7krbl5px.py", line 3, in <module> a,b,c=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s962829909
p02393
u706023549
1521420909
Python
Python3
py
Runtime Error
0
0
170
j = list(map(int, input().split())) def sort(): while i < len(j)-1: if j[i] > j[i+1]: j[i], j[i+1] = j[i+1], j[i] i = i + 1 sort() sort()
Traceback (most recent call last): File "/tmp/tmpyspf3ag3/tmpm77qaec0.py", line 1, in <module> j = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s880166070
p02393
u621084859
1522385406
Python
Python3
py
Runtime Error
0
0
90
n=input().split() m=int(n[0]) c=int(n[1]) d=int(n[2]) sorted(m,c,d) print(m[0],c[1],d[2])
Traceback (most recent call last): File "/tmp/tmp46gc4h9b/tmpt2hb9_7a.py", line 1, in <module> n=input().split() ^^^^^^^ EOFError: EOF when reading a line
s309241213
p02393
u621084859
1522385590
Python
Python3
py
Runtime Error
0
0
85
n=input().split() m=int(n[0]) c=int(n[1]) d=int(n[2]) n.sort() print(m[0],c[1],d[2])
Traceback (most recent call last): File "/tmp/tmpj6_hxiyb/tmpfn3bk6f1.py", line 1, in <module> n=input().split() ^^^^^^^ EOFError: EOF when reading a line
s047814278
p02393
u621084859
1522385610
Python
Python3
py
Runtime Error
0
0
86
n=input().split( ) m=int(n[0]) c=int(n[1]) d=int(n[2]) n.sort() print(m[0],c[1],d[2])
Traceback (most recent call last): File "/tmp/tmph_lfcubd/tmpge3cohsw.py", line 1, in <module> n=input().split( ) ^^^^^^^ EOFError: EOF when reading a line
s578737399
p02393
u782670949
1522968297
Python
Python3
py
Runtime Error
0
0
59
x = map(int, input().split()) x.sort() print(x, sep = "")
Traceback (most recent call last): File "/tmp/tmp3iilu_zf/tmpt1p32m3_.py", line 1, in <module> x = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s752871159
p02393
u782670949
1522968426
Python
Python3
py
Runtime Error
0
0
49
x = map(int, input().split()) x.sort() print(x)
Traceback (most recent call last): File "/tmp/tmpcfdsm6fe/tmpknrbsmfj.py", line 1, in <module> x = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s384479773
p02393
u782670949
1522968544
Python
Python3
py
Runtime Error
0
0
40
x = map(int, input().split()) x.sort()
Traceback (most recent call last): File "/tmp/tmpurxgyr47/tmpmgyivi72.py", line 1, in <module> x = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s859730260
p02393
u782670949
1522969270
Python
Python3
py
Runtime Error
0
0
72
x = list(map(int, input().split()) x.sort() print(" ".join(map(str, x)
File "/tmp/tmpmk85dze3/tmpi1kq83gg.py", line 1 x = list(map(int, input().split()) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s660624620
p02393
u782670949
1522969418
Python
Python3
py
Runtime Error
0
0
74
x = list(map(int, input().split()) x.sort() print(" ".join(map(str, x)))
File "/tmp/tmpr37otiao/tmp_1osl220.py", line 1 x = list(map(int, input().split()) ^ SyntaxError: '(' was never closed
s988927088
p02393
u782670949
1522969474
Python
Python3
py
Runtime Error
0
0
74
x = list(map(int, input().split()) print(" ".join(map(str, sorted(x))))
File "/tmp/tmpxqd_pp2j/tmpl4sc7q09.py", line 1 x = list(map(int, input().split()) ^ SyntaxError: '(' was never closed
s928199147
p02393
u695099631
1523081166
Python
Python3
py
Runtime Error
0
0
42
list = raw_input().split(" ") list.sort()
Traceback (most recent call last): File "/tmp/tmpxbkeaq8a/tmp54w4whfi.py", line 1, in <module> list = raw_input().split(" ") ^^^^^^^^^ NameError: name 'raw_input' is not defined
s470397057
p02393
u695099631
1523081197
Python
Python3
py
Runtime Error
0
0
54
list = raw_input().split(" ") list.sort() print(list)
Traceback (most recent call last): File "/tmp/tmpc_u6kpn3/tmpqwwvkyw_.py", line 1, in <module> list = raw_input().split(" ") ^^^^^^^^^ NameError: name 'raw_input' is not defined
s724181370
p02393
u695099631
1523081279
Python
Python3
py
Runtime Error
0
0
54
list = raw_input().split(" ") list.sort() print(list)
Traceback (most recent call last): File "/tmp/tmpvwfvseyf/tmp5_cmkcf1.py", line 1, in <module> list = raw_input().split(" ") ^^^^^^^^^ NameError: name 'raw_input' is not defined
s742469537
p02393
u695099631
1523081411
Python
Python3
py
Runtime Error
0
0
64
list = raw_input().split(" ") list.sort() print(" ".join(list))
Traceback (most recent call last): File "/tmp/tmp6_9ux5in/tmpcrfo2b8g.py", line 1, in <module> list = raw_input().split(" ") ^^^^^^^^^ NameError: name 'raw_input' is not defined
s138282876
p02393
u781194524
1523861099
Python
Python
py
Runtime Error
0
0
246
a,b,c=[int(x) for x in input().split()] if a > b: if a > c: if b < c: print(b,c,a,sep=" ") else: print(c,b,a,sep=" ") elif b < c: print(a,b,c,sep=" ") else: print(a,c,b,sep=" ")
Traceback (most recent call last): File "/tmp/tmp85hfa6z4/tmpjir0x1ly.py", line 1, in <module> a,b,c=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s096032260
p02393
u843169619
1523869922
Python
Python3
py
Runtime Error
0
0
58
list = int(map(int, input().split())) print(sorted(list)
File "/tmp/tmp3y504cgd/tmpsjqnogus.py", line 3 print(sorted(list) ^ SyntaxError: '(' was never closed
s992946001
p02393
u843169619
1523869952
Python
Python3
py
Runtime Error
0
0
59
list = int(map(int, input().split())) print(sorted(list))
Traceback (most recent call last): File "/tmp/tmp3nfyhslk/tmp7_9nt_jz.py", line 1, in <module> list = int(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s311352359
p02393
u843169619
1523870142
Python
Python3
py
Runtime Error
0
0
93
list = int(map(int, input().split())) uplist = sorted(list) print(" ".join(map(str,uplist))
File "/tmp/tmpq0ic79od/tmpbn3cfwgt.py", line 4 print(" ".join(map(str,uplist)) ^ SyntaxError: '(' was never closed
s862627873
p02393
u485986915
1524293964
Python
Python3
py
Runtime Error
0
0
54
a,b,c = map(int,input().split()) print(sorted[a,b,c])
Traceback (most recent call last): File "/tmp/tmpdqd09fx3/tmpajopqyrn.py", line 1, in <module> a,b,c = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s717359863
p02393
u485986915
1524294146
Python
Python3
py
Runtime Error
0
0
73
a,b,c = map(int,input().split()) x=[a,b,c] x.sort() print(x[0]x[1]x[2])
File "/tmp/tmpg5mpbkfw/tmpkcyscusa.py", line 5 print(x[0]x[1]x[2]) ^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s053484309
p02393
u485986915
1524294236
Python
Python3
py
Runtime Error
0
0
89
a,b,c = map(int,input().split()) x=[a,b,c] x.sort() print(x[0]) print(x[1]) Print(x[2])
Traceback (most recent call last): File "/tmp/tmpud1n3w07/tmpgc6px0qc.py", line 1, in <module> a,b,c = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s961357044
p02393
u074747865
1524472759
Python
Python3
py
Runtime Error
0
0
48
li=sorted(list(int,input().split())) print(*li)
Traceback (most recent call last): File "/tmp/tmpbzsxuun9/tmpxfdhub8_.py", line 1, in <module> li=sorted(list(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s137800860
p02393
u876060624
1524710648
Python
Python3
py
Runtime Error
0
0
71
nums = list(map((int,input().split()))) nums.sort() print(list(nums))
Traceback (most recent call last): File "/tmp/tmpr14bn2xj/tmpr_3_1o5c.py", line 1, in <module> nums = list(map((int,input().split()))) ^^^^^^^ EOFError: EOF when reading a line
s410801281
p02393
u876060624
1524710704
Python
Python3
py
Runtime Error
0
0
84
nums = list(map((int,input().split()))) nums.sort() print(nums[0],nums[1],nums[2])
Traceback (most recent call last): File "/tmp/tmphyedxr2g/tmp1ch6q0_9.py", line 1, in <module> nums = list(map((int,input().split()))) ^^^^^^^ EOFError: EOF when reading a line
s104126734
p02393
u781194524
1524811647
Python
Python3
py
Runtime Error
0
0
261
a,b,c=[int(x) in x for input().split()] if a<b<c: print(a,b,c,sep=" ") elif a<c<b: print(a,c,b,sep=" ") elif b<a<c: print(b,a,c,sep=" ") elif b<c<a: print(b,c,a,sep=" ") elif c<a<b: print(c,a,b,sep=" ") elif c<b<a: print(c,b,a,sep=" ")
File "/tmp/tmpy3wkz42k/tmpgs496nmj.py", line 1 a,b,c=[int(x) in x for input().split()] ^^^^^^^^^^^^^^^ SyntaxError: cannot assign to function call
s369636083
p02393
u781194524
1524811766
Python
Python3
py
Runtime Error
0
0
261
a,b,c=[int(x) in x for input().split()] if a<b<c: print(a,b,c,sep=" ") elif a<c<b: print(a,c,b,sep=" ") elif b<a<c: print(b,a,c,sep=" ") elif b<c<a: print(b,c,a,sep=" ") elif c<a<b: print(c,a,b,sep=" ") elif c<b<a: print(c,b,a,sep=" ")
File "/tmp/tmp96ttfb5q/tmpr982ufao.py", line 1 a,b,c=[int(x) in x for input().split()] ^^^^^^^^^^^^^^^ SyntaxError: cannot assign to function call
s509108862
p02393
u648117624
1524988005
Python
Python3
py
Runtime Error
0
0
73
x, y, z = map(int, input().split()) s = list(x, y, z) print(sorted(s))
Traceback (most recent call last): File "/tmp/tmp5irzngjn/tmp7zbywiif.py", line 1, in <module> x, y, z = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s141161704
p02393
u648117624
1524988512
Python
Python3
py
Runtime Error
0
0
114
import numpy as np x, y, z = map(int, input().split()) s = [x, y, z] print(min(s), int(np.median(s)), max(s))
Traceback (most recent call last): File "/tmp/tmpmiy0sbso/tmpqj0jjq1e.py", line 3, in <module> x, y, z = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s744844073
p02393
u648117624
1524988625
Python
Python3
py
Runtime Error
0
0
93
import numpy as np x, y, z = map(int, input().split()) s = [x, y, z] print(int(sorted(s))
File "/tmp/tmpsql7g964/tmphmju4znw.py", line 7 print(int(sorted(s)) ^ SyntaxError: '(' was never closed
s205952273
p02393
u648117624
1524988762
Python
Python3
py
Runtime Error
0
0
79
x, y, z = list(map(int, input().split())) s = [x, y, z] print(str(sorted(s))
File "/tmp/tmp42lx6bjw/tmpxm73g9_8.py", line 5 print(str(sorted(s)) ^ SyntaxError: '(' was never closed
s167752605
p02393
u648117624
1524988984
Python
Python3
py
Runtime Error
0
0
40
print(*sorted.map(int, input().split())
File "/tmp/tmpm_lr3yrw/tmp0se8paly.py", line 1 print(*sorted.map(int, input().split()) ^ SyntaxError: '(' was never closed
s363098812
p02393
u648117624
1524989020
Python
Python3
py
Runtime Error
0
0
41
print(*sorted.map(int, input().split()))
Traceback (most recent call last): File "/tmp/tmpgm140gt9/tmp948divmt.py", line 1, in <module> print(*sorted.map(int, input().split())) ^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'map'
s688176547
p02393
u648117624
1524989174
Python
Python3
py
Runtime Error
0
0
91
#print(*sorted(map(int, input().split()))) s = map(int, input().split()) print(s.sort())
Traceback (most recent call last): File "/tmp/tmp84plqv6z/tmpupvm26ag.py", line 3, in <module> s = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s105960864
p02393
u648117624
1524989411
Python
Python3
py
Runtime Error
0
0
87
#print(*sorted(map(int, input().split()))) print(*.sorted(map(int, input().split())))
File "/tmp/tmpllb18pof/tmpp633c34w.py", line 3 print(*.sorted(map(int, input().split()))) ^ SyntaxError: Invalid star expression
s022051103
p02393
u532590372
1525486983
Python
Python3
py
Runtime Error
0
0
153
if __name__ == '__main__': x = input().split(' ') a = int(x[0]) b = int(x[1]) c = int(x[2]) if a > b and b > c: print(
File "/tmp/tmpmmub2yfm/tmpwkygbccm.py", line 8 print( ^ SyntaxError: '(' was never closed
s573649652
p02393
u527389300
1526622169
Python
Python3
py
Runtime Error
0
0
230
a, b ,c = map(int, input().split()) if a > b: temp = a a = b b = temp if b > c: temp = b b = c c = temp if a > b: temp = a a = b b = temp print(srt(a)+ ' ' +str(b)+ ' ' +str(c)
File "/tmp/tmpj4t6rxqz/tmp0w9mlxaw.py", line 14 print(srt(a)+ ' ' +str(b)+ ' ' +str(c) ^ SyntaxError: '(' was never closed
s593511445
p02393
u500257793
1526984537
Python
Python3
py
Runtime Error
0
0
133
a,b,c=map(int,input().split()) if(a<b): w=a;a=b;b=w; if(b<c): w=b;b=c;c=w; if(a<b) w=a;a=b;b=w; print(f"{a},{b},{c}");
File "/tmp/tmpcnlb8y0y/tmp0gl7irrz.py", line 6 if(a<b) ^ SyntaxError: expected ':'
s257984144
p02393
u944658202
1527825964
Python
Python3
py
Runtime Error
0
0
75
number=input() list=number.split() list.sort() for x in list: print x,
File "/tmp/tmptfk9fo2z/tmpgv6jl5ag.py", line 5 print x, ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s589223268
p02393
u944658202
1527826040
Python
Python3
py
Runtime Error
0
0
77
number=input() list=number.split() list.sort() print list[0]+list[1]+list[2]
File "/tmp/tmpiuqpafpe/tmpy30yg5jk.py", line 4 print list[0]+list[1]+list[2] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s090893299
p02393
u420214671
1529027235
Python
Python3
py
Runtime Error
0
0
56
a,b,c=input().split() a=int(a) b=int(b) c=int(c) sort()
Traceback (most recent call last): File "/tmp/tmp0uqoapzw/tmpqtk002xq.py", line 1, in <module> a,b,c=input().split() ^^^^^^^ EOFError: EOF when reading a line
s184388996
p02393
u420214671
1529030024
Python
Python3
py
Runtime Error
0
0
56
a,b,c=input().split() a=int(a) b=int(b) c=int(c) sort()
Traceback (most recent call last): File "/tmp/tmp1hvfflyt/tmpvtw6aql2.py", line 1, in <module> a,b,c=input().split() ^^^^^^^ EOFError: EOF when reading a line
s128522998
p02393
u119807026
1529973871
Python
Python3
py
Runtime Error
0
0
100
d = input() a, b, c = map(int, d.split()) e = [a, b, c] e.sort() print(e[0] +" " +e[1]+ " " +e[2])
Traceback (most recent call last): File "/tmp/tmpwefliw1w/tmpf5nf2ckz.py", line 1, in <module> d = input() ^^^^^^^ EOFError: EOF when reading a line
s125878749
p02393
u119807026
1529975569
Python
Python3
py
Runtime Error
0
0
85
a = input() b = list[map(int, a.split())] b.sort() print(b[0]+" " + b[1]+ " " +b[2])
Traceback (most recent call last): File "/tmp/tmpij29v5ay/tmpewgezfka.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s012346004
p02393
u119807026
1529975664
Python
Python3
py
Runtime Error
0
0
85
a = input() b = list(map(int, a.split())) b.sort() print(b[0]+" " + b[1]+ " " +b[2])
Traceback (most recent call last): File "/tmp/tmpbwkk424m/tmp9_m7qx5a.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s156326685
p02393
u917722865
1530705576
Python
Python3
py
Runtime Error
0
0
353
abc_s = input() abc_a = abc_s.split(" ") abc = [int(x) for x in abc_a] sorted = False while sorted == False: sorted = True if abc[0] > abc[1]: sorted == False tmp = abc[0] abc[0] = abc[1] abc[1] = tmp if abc[1] > abc[2]: sorted == False tmp = abc[1] abc[1] = abc[2] abc[2] = tmp print("{0} {1} {2}".format(abc))
Traceback (most recent call last): File "/tmp/tmp3yhvxbri/tmp5mys7u91.py", line 1, in <module> abc_s = input() ^^^^^^^ EOFError: EOF when reading a line
s500618207
p02393
u917722865
1530705784
Python
Python3
py
Runtime Error
0
0
374
abc_s = input() abc_a = abc_s.split(" ") abc = [int(x) for x in abc_a] sorted = False while sorted == False: sorted = True if abc[0] > abc[1]: sorted == False tmp = abc[0] abc[0] = abc[1] abc[1] = tmp if abc[1] > abc[2]: sorted == False tmp = abc[1] abc[1] = abc[2] abc[2] = tmp print("{array[0]} {array[1]} {array[2]}".format(abc))
Traceback (most recent call last): File "/tmp/tmpnp_fz40v/tmpwiljjfid.py", line 1, in <module> abc_s = input() ^^^^^^^ EOFError: EOF when reading a line
s055298747
p02393
u146816547
1385548912
Python
Python
py
Runtime Error
0
0
218
a, b, c = map(int,raw_input().split()) if a > b > c: print a b c elif a > c > b: print a c b elif b > a > c: print b a c elif b > c > a: print b c a elif c > a > b: print c a b else: print c b a
File "/tmp/tmpl24n1d1s/tmp_klvbxh_.py", line 3 print a b c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s702504195
p02393
u146816547
1385549075
Python
Python
py
Runtime Error
0
0
184
a, b, c = map(int,raw_input().split()) if a < b: a = tmp a = b b =tmp elif b < c: b = tmp b = c c =tmp elif a < c: a = tmp a = c c = tmp print a b c
File "/tmp/tmpzk0vj1i8/tmpuxsoxm2d.py", line 14 print a b c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s106902938
p02393
u904989881
1391646700
Python
Python
py
Runtime Error
0
0
63
a = map(int, raw_input().split()) print ' ',join(str, a.sort())
File "/tmp/tmp9rdrtm14/tmpk4ucnrpx.py", line 2 print ' ',join(str, a.sort()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s384287578
p02393
u904989881
1391647068
Python
Python
py
Runtime Error
0
0
59
a = map(int, raw_input().split()) print ' '.join(sorted(a))
File "/tmp/tmp3bnp1y7v/tmp_s4f55x1.py", line 2 print ' '.join(sorted(a)) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s177514123
p02393
u633068244
1393315183
Python
Python
py
Runtime Error
0
0
277
a[0],a[1],a[2] = map(int, raw_input().split()) i = 1 while i < 3 : j = i - 1 while j < 3: if a[j] > a[j+1]: t = a[j] a[j] = a[j+1] a[j+1] = t else: break j -= 1 i += 1 print a[0],a[1],a[2]
File "/tmp/tmpttemapes/tmp1p_9zsee.py", line 16 print a[0],a[1],a[2] ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s327938858
p02393
u633068244
1393315259
Python
Python
py
Runtime Error
0
0
277
a[0],a[1],a[2] = map(int, raw_input().split()) i = 1 while i < 3 : j = i - 1 while j > 0: if a[j] > a[j+1]: t = a[j] a[j] = a[j+1] a[j+1] = t else: break j -= 1 i += 1 print a[0],a[1],a[2]
File "/tmp/tmpot74o9lc/tmp3ez2e_gu.py", line 16 print a[0],a[1],a[2] ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s007189427
p02393
u633068244
1393315292
Python
Python
py
Runtime Error
0
0
278
a[0],a[1],a[2] = map(int, raw_input().split()) i = 1 while i < 3 : j = i - 1 while j >= 0: if a[j] > a[j+1]: t = a[j] a[j] = a[j+1] a[j+1] = t else: break j -= 1 i += 1 print a[0],a[1],a[2]
File "/tmp/tmpvsbpfncd/tmpoluz9bjp.py", line 16 print a[0],a[1],a[2] ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s238509317
p02393
u633068244
1393315414
Python
Python
py
Runtime Error
0
0
79
a[0],a[1],a[2] = map(int, raw_input().split()) sorted(a) print a[0],a[1],a[2]
File "/tmp/tmp7eeb9q_y/tmpsb2afo9g.py", line 5 print a[0],a[1],a[2] ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s429934095
p02393
u633068244
1393315443
Python
Python
py
Runtime Error
0
0
69
a[0],a[1],a[2] = map(int, raw_input().split()) print a[0],a[1],a[2]
File "/tmp/tmppbdma21k/tmp7xh0yot4.py", line 4 print a[0],a[1],a[2] ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s386864260
p02393
u633068244
1393315549
Python
Python
py
Runtime Error
0
0
91
a,b,c = map(int, raw_input().split()) aa = [1, 2, 3] sorted(aa) print aa[0],aa[1],aa[2]\n
File "/tmp/tmp9xohdljt/tmptoj1qvzw.py", line 6 print aa[0],aa[1],aa[2]\n ^ SyntaxError: unexpected character after line continuation character
s990084070
p02393
u633068244
1393315648
Python
Python
py
Runtime Error
0
0
104
a,b,c = map(int, raw_input().split()) aa[0] = a aa[1] = b aa[2] = c sorted(aa) print aa[0],aa[1],aa[2]
File "/tmp/tmpy2opm7o4/tmpcfdf74x1.py", line 8 print aa[0],aa[1],aa[2] ^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s497329294
p02393
u633068244
1393315736
Python
Python
py
Runtime Error
0
0
116
a,b,c = map(int, raw_input().split()) aa = [,,,] aa[0] = a aa[1] = b aa[2] = c sorted(aa) print aa[0],aa[1],aa[2]
File "/tmp/tmppr48x1xm/tmpuft94xbw.py", line 3 aa = [,,,] ^ SyntaxError: invalid syntax
s491958006
p02393
u814387366
1394523094
Python
Python
py
Runtime Error
0
0
80
tmp=b b=c c=tmp if(a>b): tmp=a a=b b=tmp print str(a)+" "+str(b)+" "+str(c)
File "/tmp/tmprkflccz7/tmp2_sxjxjh.py", line 2 b=c IndentationError: unexpected indent
s074237643
p02394
u944658202
1532054996
Python
Python3
py
Runtime Error
0
0
146
W=int(input()) H=int(input()) x=int(input()) y=int(input()) r=int(input()) if x-r<0||y-r<0||x+r>W||y+r>H : print("NO") else: print("NO")
File "/tmp/tmpjpyqqot6/tmpn_6z3ngk.py", line 6 if x-r<0||y-r<0||x+r>W||y+r>H : ^ SyntaxError: invalid syntax
s607480901
p02394
u944658202
1532055016
Python
Python3
py
Runtime Error
0
0
152
W=int(input()) H=int(input()) x=int(input()) y=int(input()) r=int(input()) if x-r<0 or y-r<0 or x+r>W or y+r>H : print("NO") else: print("NO")
Traceback (most recent call last): File "/tmp/tmptykutwe1/tmppffkpf4b.py", line 1, in <module> W=int(input()) ^^^^^^^ EOFError: EOF when reading a line