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
s839011815
p02393
u831244171
1477487354
Python
Python3
py
Runtime Error
0
0
88
x = raw_input().split() m = map(int,x) m.sort() a = m[0] b = m[1] c = m[2] print a,b,c
File "/tmp/tmplbugq9lt/tmptv_bwhut.py", line 9 print a,b,c ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s607382773
p02393
u831244171
1477487364
Python
Python3
py
Runtime Error
0
0
89
x = raw_input().split() m = map(int,x) sorted(m) a = m[0] b = m[1] c = m[2] print a,b,c
File "/tmp/tmp32ain9bn/tmp40tqc2fg.py", line 9 print a,b,c ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s269739985
p02393
u831244171
1477487378
Python
Python3
py
Runtime Error
0
0
87
x = raw_input().split() m = map(int,x) m.sort() a = m[0] b = m[1] c = m[2] print a,b,c
File "/tmp/tmppli5s4vt/tmp4ogihi26.py", line 8 print a,b,c ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s537300364
p02393
u831244171
1477487403
Python
Python3
py
Runtime Error
0
0
88
x = raw_input().split() m = map(int,x) m.sort() a = m[0] b = m[1] c = m[2] print a,b,c
File "/tmp/tmpxsbfy4lo/tmpbdmlreb8.py", line 9 print a,b,c ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s378288369
p02393
u967794515
1477839155
Python
Python3
py
Runtime Error
0
0
379
# coding: utf-8 # Here your code ! a,b,c = input().split() if(a <= b <= c): print('%d %d %d'%(a,b,c)) if(a >= b >= c): print('%d %d %d'%(c,b,a)) if(a > c > b): print('%d %d %d'%(a,c,b)) if(b > a >= c): print('%d %d %d'%(b,a,c)) if(b > c > a): print('%d %d %d'%(b,c,a)) if(c > b >= a): print('%d %d %d'%(c,b,a)) if(c > a > b): print('%d %d %d'%(c,a,b))
Traceback (most recent call last): File "/tmp/tmpana2kxh8/tmpxj0m5p3l.py", line 3, in <module> a,b,c = input().split() ^^^^^^^ EOFError: EOF when reading a line
s653443665
p02393
u556014061
1478071317
Python
Python3
py
Runtime Error
0
0
80
x = list(map(int, input().split())) num = x.sort() print(num[0], num[1], num[2])
Traceback (most recent call last): File "/tmp/tmpi7jrw6q6/tmp3utyatr1.py", line 1, in <module> x = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s652858836
p02393
u967904307
1478231202
Python
Python
py
Runtime Error
0
0
60
L = map(int, raw_input().split()) L.sort() print " ".join(L)
File "/tmp/tmp0us9tnxx/tmpj2pszmcr.py", line 3 print " ".join(L) ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s288413659
p02393
u326248180
1478758380
Python
Python3
py
Runtime Error
0
0
32
map(int, input().split()).sort()
Traceback (most recent call last): File "/tmp/tmpjqrk2bpp/tmp3fzht60k.py", line 1, in <module> map(int, input().split()).sort() ^^^^^^^ EOFError: EOF when reading a line
s185998320
p02393
u326248180
1478758467
Python
Python3
py
Runtime Error
0
0
75
d = map(int, input().split()).sort() sorted(d.items(), key=lambda x: x[1])
Traceback (most recent call last): File "/tmp/tmpgb16vo2r/tmp9aqs4jxa.py", line 1, in <module> d = map(int, input().split()).sort() ^^^^^^^ EOFError: EOF when reading a line
s464094861
p02393
u326248180
1478758481
Python
Python3
py
Runtime Error
0
0
68
d = map(int, input().split()) sorted(d.items(), key=lambda x: x[1])
Traceback (most recent call last): File "/tmp/tmp8ubvc_gk/tmp47kcn5g8.py", line 1, in <module> d = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s413745577
p02393
u326248180
1478758604
Python
Python3
py
Runtime Error
0
0
77
ary = input().split().sort() print("{} {} {}".format(ary[0], ary[1], ary[2]))
Traceback (most recent call last): File "/tmp/tmpplz6h35q/tmpa7bgqpnv.py", line 1, in <module> ary = input().split().sort() ^^^^^^^ EOFError: EOF when reading a line
s357280387
p02393
u326248180
1478758639
Python
Python3
py
Runtime Error
0
0
43
ary = input().split().sort() print(ary[0])
Traceback (most recent call last): File "/tmp/tmptwxjcv71/tmp8a2udzm3.py", line 1, in <module> ary = input().split().sort() ^^^^^^^ EOFError: EOF when reading a line
s752289898
p02393
u326248180
1478758650
Python
Python3
py
Runtime Error
0
0
43
ary = input().split().sort() print(ary(0))
Traceback (most recent call last): File "/tmp/tmpdvjf8kgn/tmp0gk3a5js.py", line 1, in <module> ary = input().split().sort() ^^^^^^^ EOFError: EOF when reading a line
s554634209
p02393
u326248180
1478758728
Python
Python3
py
Runtime Error
0
0
54
ary = list(map(input().split())).sort() print(ary[0])
Traceback (most recent call last): File "/tmp/tmphbi4q3qw/tmpjnsvweoe.py", line 1, in <module> ary = list(map(input().split())).sort() ^^^^^^^ EOFError: EOF when reading a line
s295089764
p02393
u326248180
1478758738
Python
Python3
py
Runtime Error
0
0
59
ary = list(map(int, input().split())).sort() print(ary[0])
Traceback (most recent call last): File "/tmp/tmpb4gv_4mt/tmpvkkrf_0m.py", line 1, in <module> ary = list(map(int, input().split())).sort() ^^^^^^^ EOFError: EOF when reading a line
s742602259
p02393
u326248180
1478758751
Python
Python3
py
Runtime Error
0
0
50
d = map(int, input().split()) d.sort() print(d[0])
Traceback (most recent call last): File "/tmp/tmp_qyf6mqn/tmp5tselcls.py", line 1, in <module> d = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s877512004
p02393
u694307805
1479358470
Python
Python3
py
Runtime Error
0
0
241
a, b, c = map (int, input().split()) if a < b: if a < c: if b < c: print(a, b, c) else: print(a, c, b) else: print(c, a, b) else: if b < c: if a < c: print(b, a, c) else: print(b, c, a) else: print(c, b, a)
File "/tmp/tmp71pj933b/tmpx4ullucj.py", line 6 else: ^^^^ SyntaxError: invalid syntax
s274077032
p02393
u694307805
1479358504
Python
Python3
py
Runtime Error
0
0
241
a, b, c = map (int, input().split()) if a < b: if a < c: if b < c: print(a, b, c) else: print(a, c, b) else: print(c, a, b) else: if b < c: if a < c: print(b, a, c) else: print(b, c, a) else: print(c, b, a)
File "/tmp/tmpc54m01hr/tmpbba4lztg.py", line 6 else: ^^^^ SyntaxError: invalid syntax
s727074632
p02393
u742376116
1479369358
Python
Python
py
Runtime Error
0
0
145
a, b, c = map(int, raw_input(' ')) l = [] l.append(a) l.append(b) l.append(c) l = sorted(l) print str(l[0]) + ' ' + str(l[1]) + ' ' + str(l[2])
File "/tmp/tmp_0duhmmo/tmpovvez8qo.py", line 9 print str(l[0]) + ' ' + str(l[1]) + ' ' + str(l[2]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s398641576
p02393
u234837959
1481244945
Python
Python3
py
Runtime Error
0
0
113
list = map(int, input().split(" ")) list = map(str, list.sort()) print(list[0] + " " + list[1] + " " + list[2])
Traceback (most recent call last): File "/tmp/tmpjn7qkci2/tmpuqiruuha.py", line 1, in <module> list = map(int, input().split(" ")) ^^^^^^^ EOFError: EOF when reading a line
s333057579
p02393
u234837959
1481245002
Python
Python3
py
Runtime Error
0
0
135
list = map(int, input().split(" ")) print(list) list = map(str, list.sort()) print(list) print(list[0] + " " + list[1] + " " + list[2])
Traceback (most recent call last): File "/tmp/tmp9cl6_zad/tmp5rncir17.py", line 1, in <module> list = map(int, input().split(" ")) ^^^^^^^ EOFError: EOF when reading a line
s633899878
p02393
u234837959
1481369270
Python
Python3
py
Runtime Error
0
0
161
list1 = input().split(" ") list2 = list(map(int, list1)) list3 = list2.sort() list4 = list(map(str, list3)) answer_string = " ".join(list4) print(answer_string)
Traceback (most recent call last): File "/tmp/tmpsbvp8tzb/tmps3fsi85g.py", line 1, in <module> list1 = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s623690726
p02393
u693424532
1481635299
Python
Python3
py
Runtime Error
0
0
62
a = list(map(input().split())) a.sort() print(a[0],a[1],a[2])
Traceback (most recent call last): File "/tmp/tmp4ej99l1o/tmpjfhx_qeb.py", line 1, in <module> a = list(map(input().split())) ^^^^^^^ EOFError: EOF when reading a line
s695026045
p02393
u493187281
1482678709
Python
Python3
py
Runtime Error
0
0
78
a=int(input()) b=int(input()) c=int(input()) ABC=[a,b,c] ABC.sort() print(ABC)
Traceback (most recent call last): File "/tmp/tmpj8gsvawt/tmprarxcf_y.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s379674640
p02393
u019678978
1482899116
Python
Python
py
Runtime Error
0
0
406
a,b,c = map(int, raw_input().split(" ")) if a > b : if a > c : if b > c : print(%d %d %d)% a b c elif c > b : print(%d %d %d)% a c b else c > a : print(%d %d %d)% c a b elif b > a : if b > c : if a > c print(%d %d %d)% b a c elif c > a : print(%d %d %d)% b c a else c > b print(%d %d %d)% c b a
File "/tmp/tmpxlf468xc/tmp4quo0wof.py", line 5 print(%d %d %d)% a b c ^ SyntaxError: invalid syntax
s347283576
p02393
u019678978
1482899144
Python
Python
py
Runtime Error
0
0
410
a,b,c = map(int, raw_input().split(" ")) if a > b : if a > c : if b > c : print(%d %d %d)% a b c elif c > b : print(%d %d %d)% a c b else c > a : print(%d %d %d)% c a b elif b > a : if b > c : if a > c : print(%d %d %d)% b a c elif c > a : print(%d %d %d)% b c a else c > b : print(%d %d %d)% c b a
File "/tmp/tmpujpx5nff/tmpqm2guuau.py", line 5 print(%d %d %d)% a b c ^ SyntaxError: invalid syntax
s627238810
p02393
u019678978
1482899312
Python
Python
py
Runtime Error
0
0
410
a,b,c = map(int, raw_input().split(" ")) if a > b : if a > c : if b > c : print(%d %d %d)% a b c elif c > b : print(%d %d %d)% a c b else c > a : print(%d %d %d)% c a b elif b > a : if b > c : if a > c : print(%d %d %d)% b a c elif c > a : print(%d %d %d)% b c a else c > b : print(%d %d %d)% c b a
File "/tmp/tmpvdg_376a/tmp3pqlgxxl.py", line 5 print(%d %d %d)% a b c ^ SyntaxError: invalid syntax
s828816613
p02393
u019678978
1482899825
Python
Python
py
Runtime Error
0
0
373
a,b,c = map(int, raw_input().split(" ")) if a <= b : if a <= b <= c : print("%d %d %d" % a b c) elif a <= c <= b : print("%d %d %d" % a c b) else : print("%d %d %d" % c a b) else : if b <= a <= c : print("%d %d %d" % b a c) elif b <= c <= a : print("%d %d %d" % b c a) else : print("%d %d %d" % c b a)
File "/tmp/tmpz2rf2zwa/tmpywyvk206.py", line 4 print("%d %d %d" % a b c) ^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s466037348
p02393
u019678978
1482899888
Python
Python3
py
Runtime Error
0
0
373
a,b,c = map(int, raw_input().split(" ")) if a <= b : if a <= b <= c : print("%d %d %d" % a b c) elif a <= c <= b : print("%d %d %d" % a c b) else : print("%d %d %d" % c a b) else : if b <= a <= c : print("%d %d %d" % b a c) elif b <= c <= a : print("%d %d %d" % b c a) else : print("%d %d %d" % c b a)
File "/tmp/tmp3ysp5hby/tmpkgijlx7t.py", line 4 print("%d %d %d" % a b c) ^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s547342695
p02393
u019678978
1482900167
Python
Python3
py
Runtime Error
0
0
463
a,b,c = map(int, raw_input().split(" ")) if a <= b : if a <= b <= c : print("{1} {2} {3}".format(1=a,2=b,3=c)) elif a <= c <= b : print("{1} {2} {3}".format(1=a,2=c,3=b)) else : print("{1} {2} {3}".format(1=c,2=a,3=b)) else : if b <= a <= c : print("{1} {2} {3}".format(1=b,2=a,3=c)) elif b <= c <= a : print("{1} {2} {3}".format(1=b,2=c,3=a)) else : print("{1} {2} {3}".format(1=c,2=b,3=a))
File "/tmp/tmpzshkax67/tmpipjtthjw.py", line 4 print("{1} {2} {3}".format(1=a,2=b,3=c)) ^^ SyntaxError: expression cannot contain assignment, perhaps you meant "=="?
s848809358
p02393
u019678978
1482900173
Python
Python
py
Runtime Error
0
0
463
a,b,c = map(int, raw_input().split(" ")) if a <= b : if a <= b <= c : print("{1} {2} {3}".format(1=a,2=b,3=c)) elif a <= c <= b : print("{1} {2} {3}".format(1=a,2=c,3=b)) else : print("{1} {2} {3}".format(1=c,2=a,3=b)) else : if b <= a <= c : print("{1} {2} {3}".format(1=b,2=a,3=c)) elif b <= c <= a : print("{1} {2} {3}".format(1=b,2=c,3=a)) else : print("{1} {2} {3}".format(1=c,2=b,3=a))
File "/tmp/tmpni72e6pi/tmp5267d6jl.py", line 4 print("{1} {2} {3}".format(1=a,2=b,3=c)) ^^ SyntaxError: expression cannot contain assignment, perhaps you meant "=="?
s773931538
p02393
u019678978
1482900222
Python
Python
py
Runtime Error
0
0
470
a,b,c = map(int, raw_input().split(" ")) if a <= b : if a <= b <= c : print("{1} {2} {3}".format(1=a,2=b,3=c)) elif a <= c <= b : print("{1} {2} {3}".format(1=a,2=c,3=b)) else : print("{1} {2} {3}".format(1=c,2=a,3=b)) else b <= a : if b <= a <= c : print("{1} {2} {3}".format(1=b,2=a,3=c)) elif b <= c <= a : print("{1} {2} {3}".format(1=b,2=c,3=a)) else : print("{1} {2} {3}".format(1=c,2=b,3=a))
File "/tmp/tmp6ma02k75/tmpfe4tj76c.py", line 4 print("{1} {2} {3}".format(1=a,2=b,3=c)) ^^ SyntaxError: expression cannot contain assignment, perhaps you meant "=="?
s796384456
p02393
u019678978
1482900393
Python
Python3
py
Runtime Error
0
0
302
a,b,c = map(int, raw_input().split(" ")) if a <= b : if a <= b <= c : print(a,b,c) elif a <= c <= b : print(a,c,b) else : print(c,a,b) else b <= a : if b <= a <= c : print(b,a,c) elif b <= c <= a : print(b,c,a) else : print(c,b,a)
File "/tmp/tmpi5gmjc05/tmpuy6ylyuf.py", line 9 else b <= a : ^ SyntaxError: expected ':'
s983536498
p02393
u019678978
1482900609
Python
Python3
py
Runtime Error
0
0
302
a,b,c = map(int, raw_input().split(" ")) if a <= b : if a <= b <= c : print(a,b,c) elif a <= c <= b : print(a,c,b) else : print(c,a,b) elif b <= a : if b <= a <= c : print(b,a,c) elif b <= c <= a : print(b,c,a) else : print(c,b,a)
Traceback (most recent call last): File "/tmp/tmp7zrbz1by/tmpmswj4qn9.py", line 1, in <module> a,b,c = map(int, raw_input().split(" ")) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s564446392
p02393
u019678978
1482902606
Python
Python
py
Runtime Error
0
0
75
al = list(map(int, raw_input().split(" "))).sort() print(al[0],al[1],al[2])
Traceback (most recent call last): File "/tmp/tmpme3mao5s/tmpluy6ykuc.py", line 1, in <module> al = list(map(int, raw_input().split(" "))).sort() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s703026297
p02393
u019678978
1482902613
Python
Python3
py
Runtime Error
0
0
75
al = list(map(int, raw_input().split(" "))).sort() print(al[0],al[1],al[2])
Traceback (most recent call last): File "/tmp/tmp29g3pc52/tmpnpsyyffs.py", line 1, in <module> al = list(map(int, raw_input().split(" "))).sort() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s789000209
p02393
u019678978
1482902641
Python
Python3
py
Runtime Error
0
0
72
al = list(map(int, raw_input().split())).sort() print(al[0],al[1],al[2])
Traceback (most recent call last): File "/tmp/tmpj2g_blkm/tmpmelpwntj.py", line 1, in <module> al = list(map(int, raw_input().split())).sort() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s528627204
p02393
u019678978
1482902751
Python
Python3
py
Runtime Error
0
0
81
al = list(map(int, raw_input().split())) al = sorted(al) print(al[0],al[1],al[2])
Traceback (most recent call last): File "/tmp/tmpj9kvtew3/tmpsny52mb2.py", line 1, in <module> al = list(map(int, raw_input().split())) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s883158601
p02393
u159126725
1483945637
Python
Python
py
Runtime Error
0
0
83
a, b, c = map(int, raw_input().split()) l = [a, b, c].sort() print l[0], l[1], l[2]
File "/tmp/tmpqpgrrkv9/tmp73wrtdp2.py", line 3 print l[0], l[1], l[2] ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s299088576
p02393
u256874901
1484052476
Python
Python
py
Runtime Error
0
0
109
#coding:utf-8 data = sorted([int(i) for i in input().split()]) s="" for x in data: s+=(str(x)+" ") print(s)
Traceback (most recent call last): File "/tmp/tmppwfp0lpu/tmpvl9g3l08.py", line 3, in <module> data = sorted([int(i) for i in input().split()]) ^^^^^^^ EOFError: EOF when reading a line
s925834274
p02393
u227438830
1487017685
Python
Python3
py
Runtime Error
0
0
69
z = input() l = z.split() l.sort() print("%s %s %s" % l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmp397tj1ly/tmpp48sn885.py", line 1, in <module> z = input() ^^^^^^^ EOFError: EOF when reading a line
s713439148
p02393
u024715419
1488156564
Python
Python3
py
Runtime Error
0
0
71
inp = input().split() l = list(map(int,inp)).sort print(l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmpq5fcqo93/tmp_0nmxext.py", line 1, in <module> inp = input().split() ^^^^^^^ EOFError: EOF when reading a line
s029899206
p02393
u024715419
1488156612
Python
Python3
py
Runtime Error
0
0
73
inp = input().split() l = list(map(int,inp)).sort() print(l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmpuoyjpwyv/tmpbnr1v1xg.py", line 1, in <module> inp = input().split() ^^^^^^^ EOFError: EOF when reading a line
s183843695
p02393
u024715419
1488156634
Python
Python3
py
Runtime Error
0
0
79
inp = input().split() l = list(map(int,inp)) l = l.sort() print(l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmppiygj1zz/tmp1fhwfwfa.py", line 1, in <module> inp = input().split() ^^^^^^^ EOFError: EOF when reading a line
s603593636
p02393
u024715419
1488161468
Python
Python3
py
Runtime Error
0
0
73
inp = list(map(int,input().split())) l = inp.sort() print(l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmp22ev2kgw/tmpx12pmnjw.py", line 1, in <module> inp = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s248196816
p02393
u024715419
1488161584
Python
Python3
py
Runtime Error
0
0
73
inp = list(map(int,input().split())) l = inp.sort() print(l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmpeph_zz_r/tmpiar5lu0h.py", line 1, in <module> inp = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s193781082
p02393
u024715419
1488161809
Python
Python3
py
Runtime Error
0
0
73
inp = list(map(int,input().split())) l = inp.sort() print(l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmp_8mk4j8m/tmpf46k013i.py", line 1, in <module> inp = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s749355658
p02393
u024715419
1488161937
Python
Python3
py
Runtime Error
0
0
70
inp =list(map(int,input().split())) l=inp.sort() print(l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmpef0dmary/tmpighrf9pe.py", line 1, in <module> inp =list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s429159591
p02393
u024715419
1488161952
Python
Python3
py
Runtime Error
0
0
70
inp =list(map(int,input().split())) l=inp.sort() print(l[0],l[1],l[2])
Traceback (most recent call last): File "/tmp/tmpyezafm8b/tmp2kd47rbc.py", line 1, in <module> inp =list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s839976423
p02393
u156091054
1488781130
Python
Python3
py
Runtime Error
0
0
67
x = list(map(int, input(),split()) x.sort() print(x[0], x[1], x[2])
File "/tmp/tmpdztwsuaz/tmpr5np3yr8.py", line 1 x = list(map(int, input(),split()) ^ SyntaxError: '(' was never closed
s410100730
p02393
u156091054
1488781176
Python
Python3
py
Runtime Error
0
0
60
x = list(map(int, input())) x.sort() print(x[0], x[1], x[2])
Traceback (most recent call last): File "/tmp/tmp66rvrj6u/tmp9f2j6_cd.py", line 1, in <module> x = list(map(int, input())) ^^^^^^^ EOFError: EOF when reading a line
s634344890
p02393
u921541953
1489203587
Python
Python3
py
Runtime Error
0
0
61
a = list(map(int, input().split())) a = sorted(a) ' '.join(a)
Traceback (most recent call last): File "/tmp/tmpyuafknwo/tmpmbhcjc_i.py", line 1, in <module> a = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s620929712
p02393
u756958775
1489310793
Python
Python3
py
Runtime Error
0
0
47
x = map(int, input().split()) x.sort() print(x)
Traceback (most recent call last): File "/tmp/tmpj6f3p1r2/tmp0lfk_7nd.py", line 1, in <module> x = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s228656297
p02393
u275742248
1489759061
Python
Python3
py
Runtime Error
0
0
90
lst = list(map(int, input().split())) for i in lst.sort(): print('{}'.format(i), end='')
Traceback (most recent call last): File "/tmp/tmp3ognqqin/tmpzn7b0ea8.py", line 1, in <module> lst = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s233351171
p02393
u275742248
1489759285
Python
Python
py
Runtime Error
0
0
95
lst = list(map(int, input().split(' '))) for i in sorted(lst): print('{} '.format(i), end='')
Traceback (most recent call last): File "/tmp/tmp75ykvhg3/tmprobbr8j9.py", line 1, in <module> lst = list(map(int, input().split(' '))) ^^^^^^^ EOFError: EOF when reading a line
s848643210
p02393
u042882066
1490665828
Python
Python3
py
Runtime Error
0
0
99
list = int(input()).sort() a, b, c = map(split(), list) print("{a} {b} {c}").format(a=a, b=b, c=c)
Traceback (most recent call last): File "/tmp/tmpc00dfrzc/tmpo__49uv5.py", line 1, in <module> list = int(input()).sort() ^^^^^^^ EOFError: EOF when reading a line
s238689624
p02393
u042882066
1490665829
Python
Python3
py
Runtime Error
0
0
99
list = int(input()).sort() a, b, c = map(split(), list) print("{a} {b} {c}").format(a=a, b=b, c=c)
Traceback (most recent call last): File "/tmp/tmps1oqtmug/tmpx48ygfct.py", line 1, in <module> list = int(input()).sort() ^^^^^^^ EOFError: EOF when reading a line
s260034877
p02393
u042882066
1490666025
Python
Python3
py
Runtime Error
0
0
101
data = int(input()) list = sorted(data) print("{a} {b} {c}").format(a=list[0], b=list[1], c=list[2])
Traceback (most recent call last): File "/tmp/tmpav6lv9tg/tmp4w4l8f4h.py", line 1, in <module> data = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s831457737
p02393
u042882066
1490666067
Python
Python3
py
Runtime Error
0
0
112
data = int(input()).split(" ") list = sorted(data) print("{a} {b} {c}").format(a=list[0], b=list[1], c=list[2])
Traceback (most recent call last): File "/tmp/tmptqepcz2d/tmpo61v4u9q.py", line 1, in <module> data = int(input()).split(" ") ^^^^^^^ EOFError: EOF when reading a line
s199103098
p02393
u042882066
1490666136
Python
Python3
py
Runtime Error
0
0
117
data = int(input()) list = data.split(" ") list.sort() print("{a} {b} {c}").format(a=list[0], b=list[1], c=list[2])
Traceback (most recent call last): File "/tmp/tmpuf0snndz/tmp7ekepteg.py", line 1, in <module> data = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s786211083
p02393
u042882066
1490666158
Python
Python3
py
Runtime Error
0
0
117
data = int(input()) list = data.split(" ") list.sort() print("{a} {b} {c}".format(a=list[0], b=list[1], c=list[2]))
Traceback (most recent call last): File "/tmp/tmp72jxuzhv/tmp2zxl6bd1.py", line 1, in <module> data = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s014398281
p02393
u042882066
1490666226
Python
Python3
py
Runtime Error
0
0
111
data = int(input()) list = data.split(" ") list.sort() print("{0} {1} {2}".format(list[0], list[1], list[2]))
Traceback (most recent call last): File "/tmp/tmpnoyu44cf/tmp6am92d5k.py", line 1, in <module> data = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s930202137
p02393
u606989659
1491032214
Python
Python3
py
Runtime Error
0
0
66
a = map(int,input().split()) b = a.sort() c = ' '.join(b) print(c)
Traceback (most recent call last): File "/tmp/tmplaewsg29/tmpoyxgdjl2.py", line 1, in <module> a = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s463744645
p02393
u606989659
1491032793
Python
Python3
py
Runtime Error
0
0
63
a = map(int,input().split()) b = a.sort() print(b[0] b[1] b[2])
File "/tmp/tmpjfpujrz9/tmp6pv3e_o7.py", line 3 print(b[0] b[1] b[2]) ^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s679283618
p02393
u606989659
1491032948
Python
Python3
py
Runtime Error
0
0
82
a = map(int,input().split()) b = a.sort() print('{} {} {}'.format(b[0],b[1],b[2]))
Traceback (most recent call last): File "/tmp/tmpvdx44_vx/tmpecmokuu_.py", line 1, in <module> a = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s572709292
p02393
u606989659
1491034640
Python
Python3
py
Runtime Error
0
0
71
x = list(map(int,input().split())) y = x.sort() print(y[0], y[1], y[2])
Traceback (most recent call last): File "/tmp/tmpfdnu037h/tmpa1esczd5.py", line 1, in <module> x = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s221783516
p02393
u470964735
1492054615
Python
Python3
py
Runtime Error
0
0
63
l = list(map(int, input().split())) l.sort() print(" ".join(l))
Traceback (most recent call last): File "/tmp/tmpfnxpz_ns/tmpm3y9d0h3.py", line 1, in <module> l = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s380172736
p02393
u470964735
1492054718
Python
Python3
py
Runtime Error
0
0
69
l = list(map(int, input().split())) l.sort() print(l[0], l[1], l[[2])
File "/tmp/tmpjw2l0m98/tmp7ou0aflo.py", line 3 print(l[0], l[1], l[[2]) ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
s226665570
p02393
u619570677
1492408012
Python
Python3
py
Runtime Error
0
0
225
if a < b: if a < c: if b < c: print(a < b < c) else: print("a < c < b") else: print("c < a < b") elif a > b: if a > c: if b < c: print("b < c < a") else: print("c < b < a") else: print("b < c < a")
Traceback (most recent call last): File "/tmp/tmpybnlpbku/tmpqbqfbi9p.py", line 1, in <module> if a < b: ^ NameError: name 'a' is not defined
s228231659
p02393
u619570677
1492432543
Python
Python3
py
Runtime Error
0
0
320
a,b,c = list(map(int,input().split())) if a < b: if b < c: print(a < b < c) else: print("a < c < b") else: print("c < a < b") elif a > b: if a > c: if b < c: print("b < c < a") else: print("c < b < a") else: print("b < c < a")
File "/tmp/tmp3qfy9oaw/tmpn4jeu4zz.py", line 8 else: ^^^^ SyntaxError: invalid syntax
s397821716
p02393
u619570677
1492437174
Python
Python3
py
Runtime Error
0
0
175
a,b,c = list(map(int,input().split())) temp = 0 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(a,b,c)
File "/tmp/tmpskm5frdc/tmphnan87kd.py", line 5 a = b TabError: inconsistent use of tabs and spaces in indentation
s163799879
p02393
u619570677
1492437204
Python
Python3
py
Runtime Error
0
0
179
a,b,c = list(map(int,input().split())) temp = 0 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(a,b,c)
File "/tmp/tmp4nrmjc8x/tmpidywb12v.py", line 5 a = b TabError: inconsistent use of tabs and spaces in indentation
s592794929
p02393
u619570677
1492437241
Python
Python3
py
Runtime Error
0
0
209
a,b,c = list(map(int,input().split())) temp = 0 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(a,end=" ") print(b,end=" ") print(c)
File "/tmp/tmppzldofgm/tmpb4sjz1eh.py", line 5 a = b TabError: inconsistent use of tabs and spaces in indentation
s697464145
p02393
u619570677
1492615115
Python
Python3
py
Runtime Error
0
0
79
num = map(int, raw_input().split()) num.sort() printf(num[0], num[1], num[2])
Traceback (most recent call last): File "/tmp/tmphuzfieod/tmph_qvq240.py", line 1, in <module> num = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s545167327
p02393
u619570677
1492615164
Python
Python3
py
Runtime Error
0
0
78
num = map(int, raw_input().split()) num.sort() print(num[0], num[1], num[2])
Traceback (most recent call last): File "/tmp/tmp6hz658xv/tmp1mf_wnro.py", line 1, in <module> num = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s939696908
p02393
u772010071
1493113156
Python
Python3
py
Runtime Error
0
0
156
a, b = list(map(int, input().split())) if a > b: a,b = b,a if a > c: a,c = c,a if b > c: b, c = c, b print(str(a) + " " + str(b) + " " + str(c))
Traceback (most recent call last): File "/tmp/tmpu7fq31qn/tmpq4p742al.py", line 1, in <module> a, b = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s286903567
p02393
u772010071
1493113178
Python
Python3
py
Runtime Error
0
0
156
a, b = list(map(int, input().split())) if a > b: a,b = b,a if a > c: a,c = c,a if b > c: b, c = c, b print(str(a) + " " + str(b) + " " + str(c))
Traceback (most recent call last): File "/tmp/tmpujcvxd2h/tmpfczwcy8p.py", line 1, in <module> a, b = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s056325311
p02393
u772010071
1493113988
Python
Python3
py
Runtime Error
0
0
102
l = input().split() d = min(l) e = max(l) fl.remove(max(l), min(l)) print(str(d) + " " + f + " " + e)
Traceback (most recent call last): File "/tmp/tmp1mwbsjv0/tmps0jtxvw8.py", line 1, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s683384082
p02393
u772010071
1493114006
Python
Python3
py
Runtime Error
0
0
105
l = input().split() d = min(l) e = max(l) f = l.remove(max(l), min(l)) print(str(d) + " " + f + " " + e)
Traceback (most recent call last): File "/tmp/tmpjqx0n8qk/tmpdqc5sjdx.py", line 1, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s407421266
p02393
u772010071
1493114266
Python
Python3
py
Runtime Error
0
0
113
l = input().split() d = min(l) e = max(l) f = l.remove(max(l)) print(str(d) + " " + str(max(f)) + " " + str(e))
Traceback (most recent call last): File "/tmp/tmpzriy0dz8/tmptcdwct4y.py", line 1, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s739519485
p02393
u772010071
1493114440
Python
Python3
py
Runtime Error
0
0
79
l = input().split() print(min(l) + " " + min(l.remove(min(l))) + " " + max(l))
Traceback (most recent call last): File "/tmp/tmp7ez7oma1/tmpq6z2hhaq.py", line 1, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s080937942
p02393
u772010071
1493114706
Python
Python3
py
Runtime Error
0
0
133
l = list(map(int, input().split())) l.sort() for i in range(l): if i == len(l)-1: print(i) else: print(i+" ")
Traceback (most recent call last): File "/tmp/tmp2ltz1off/tmpzfdng7cj.py", line 1, in <module> l = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s913457355
p02393
u772010071
1493114765
Python
Python3
py
Runtime Error
0
0
126
l = list(map(int, input().split())) l.sort() for i in l: if i == len(l)-1: print(i) else: print(i+" ")
Traceback (most recent call last): File "/tmp/tmp8oizqtnu/tmp2w8cisrv.py", line 1, in <module> l = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s508179500
p02393
u772010071
1493114843
Python
Python3
py
Runtime Error
0
0
139
l = list(map(int, input().split())) l.sort() for i in l: if i == len(l)-1: print(l[i]) else: print(l[i], end = " ")
Traceback (most recent call last): File "/tmp/tmpqudk2a03/tmpf9bv2sug.py", line 1, in <module> l = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s385592427
p02393
u003181964
1493290492
Python
Python3
py
Runtime Error
0
0
101
data = input() data = data.split() data = map (int, data) data = sorted (data) print (" ".join(data))
Traceback (most recent call last): File "/tmp/tmpxafg9a7g/tmp24tpsm5l.py", line 1, in <module> data = input() ^^^^^^^ EOFError: EOF when reading a line
s785698797
p02393
u003181964
1493290756
Python
Python3
py
Runtime Error
0
0
136
data = input() data = data.split() data = map (int, data) data = sorted (data) out = "" for i in data: out += i + " " print (out[:-1])
Traceback (most recent call last): File "/tmp/tmparzffg_t/tmp070z5ecu.py", line 1, in <module> data = input() ^^^^^^^ EOFError: EOF when reading a line
s576525238
p02393
u003181964
1493290816
Python
Python3
py
Runtime Error
0
0
135
data = input() data = data.split() data = map (int, data) data = sorted (data) out = "" for i in data: out += i + " " print (out[:4])
Traceback (most recent call last): File "/tmp/tmpuubpkuaa/tmpcf1eeaaf.py", line 1, in <module> data = input() ^^^^^^^ EOFError: EOF when reading a line
s099954126
p02393
u003181964
1493290858
Python
Python3
py
Runtime Error
0
0
101
data = input() data = data.split() data = map (int, data) data = sorted (data) print (":".join(data))
Traceback (most recent call last): File "/tmp/tmpzcupnsx7/tmpdraouo6l.py", line 1, in <module> data = input() ^^^^^^^ EOFError: EOF when reading a line
s795539282
p02393
u419755872
1493477707
Python
Python3
py
Runtime Error
0
0
170
#coding:UTF-8 s = input().split() a=int(s[0]) b=int(s[1]) c=int(s[2]) if(a>b): temp=a a=b b=tem if(b>c): temp=b b=c c=temp else: print (a,b,c)
Traceback (most recent call last): File "/tmp/tmp7zq0z3y2/tmpr5kb3wnm.py", line 2, in <module> s = input().split() ^^^^^^^ EOFError: EOF when reading a line
s988667764
p02393
u213265973
1494228738
Python
Python3
py
Runtime Error
0
0
83
num = input().split(" ") n = [int(i) for i in num] n = sorted(n) print(" ".join(n))
Traceback (most recent call last): File "/tmp/tmp8f957k1q/tmpl6j4zdua.py", line 1, in <module> num = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s378397799
p02393
u650790815
1494332955
Python
Python3
py
Runtime Error
0
0
32
print(*sorted(input().split())))
File "/tmp/tmp7wpk5dh8/tmp0a4m0kmx.py", line 1 print(*sorted(input().split()))) ^ SyntaxError: unmatched ')'
s177947767
p02393
u650790815
1495325111
Python
Python3
py
Runtime Error
0
0
59
a,b,c = map(int,input().split()) print(sorted(list(a,b,c)))
Traceback (most recent call last): File "/tmp/tmptepxrqy8/tmptofxfvq6.py", line 1, in <module> a,b,c = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s454289640
p02393
u650790815
1495325214
Python
Python3
py
Runtime Error
0
0
59
a,b,c = map(int,input().split()) print(sorted(list(a,b,c)))
Traceback (most recent call last): File "/tmp/tmpahrhqa7e/tmpqugs9hoq.py", line 1, in <module> a,b,c = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s704516535
p02393
u650790815
1495500335
Python
Python3
py
Runtime Error
0
0
87
a,b,c = map(int,input().split()) li= sorted(li[0],li[1],li[2]) print(li[0],li[1],li[2])
Traceback (most recent call last): File "/tmp/tmpq2n58t0b/tmpns7y4s5d.py", line 1, in <module> a,b,c = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s828745620
p02393
u650790815
1495703112
Python
Python3
py
Runtime Error
0
0
78
a,b,c = map(int,input().split()) print(' '.join(map(str,sorted(list(a,b,c)))))
Traceback (most recent call last): File "/tmp/tmpybjoehvc/tmphf6sd3gw.py", line 1, in <module> a,b,c = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s883566440
p02393
u650790815
1495703339
Python
Python3
py
Runtime Error
0
0
62
l = list(input().split()) print(' 'a.join(map(str,sorted(l))))
File "/tmp/tmpza1zft62/tmpni9x6cpk.py", line 2 print(' 'a.join(map(str,sorted(l)))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s265040448
p02393
u999594662
1496124803
Python
Python3
py
Runtime Error
0
0
69
a, b, c = list(map(int, input().split())) d = a, b, c print(d.sort())
Traceback (most recent call last): File "/tmp/tmplhf0ijbe/tmphsvmbvkl.py", line 1, in <module> a, b, c = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s746732183
p02393
u999594662
1496125279
Python
Python3
py
Runtime Error
0
0
86
x = list(map(int, input().split()) x.sort() print("{0} {1} {2}".format(x[0],x[1],x[2])
File "/tmp/tmpig7pydzq/tmppb8ydqj4.py", line 1 x = list(map(int, input().split()) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s516093983
p02393
u999594662
1496125320
Python
Python3
py
Runtime Error
0
0
87
x = list(map(int, input().split())) x.sort() print("{0} {1} {2}".format(x[0],x[1],x[2])
File "/tmp/tmp2lwqmjfp/tmptga040dl.py", line 3 print("{0} {1} {2}".format(x[0],x[1],x[2]) ^ SyntaxError: '(' was never closed
s499269942
p02393
u675844759
1496799728
Python
Python3
py
Runtime Error
0
0
66
a = [int(i) for i in intput().split()] " ".join(map(str,a.sort()))
Traceback (most recent call last): File "/tmp/tmpb7yu2w7g/tmp17sndpb5.py", line 1, in <module> a = [int(i) for i in intput().split()] ^^^^^^ NameError: name 'intput' is not defined. Did you mean: 'input'?