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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s578057320 | p02393 | u675844759 | 1496799743 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a = [int(i) for i in input().split()]
" ".join(map(str,a.sort())) | Traceback (most recent call last):
File "/tmp/tmpafta3385/tmpzvvx904f.py", line 1, in <module>
a = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s639944184 | p02393 | u675844759 | 1496800110 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a = [int(i) for i in input().split()]
print(" ".join(sorted(a))) | Traceback (most recent call last):
File "/tmp/tmpp7edkptp/tmpu02pna3u.py", line 1, in <module>
a = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s021802334 | p02393 | u580737984 | 1497507868 | Python | Python3 | py | Runtime Error | 0 | 0 | 351 | i = j = k = 0
n = ''
m = ''
l = ''
line = input()
while line[i] != ' ':
n = n + line[i]
i += 1
i += 1
while line[i] != ' ':
l = l + line[i]
i += 1
while i < len(line):
m = m + line[i]
i += 1
n = int(n)
l = int(l)
m = int(m)
out = [n,m,l]
out = out.sort()
print(out[0],end=' ')
print(out[1],end=' ')
print(out[2]) | Traceback (most recent call last):
File "/tmp/tmp5bjl2wev/tmpx1ax6htb.py", line 6, in <module>
line = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s772397825 | p02393 | u050103511 | 1497511206 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | list = [i for i in input().split()]
print(' '.join([int(i) for i in sorted(list)])) | Traceback (most recent call last):
File "/tmp/tmplstcu3wh/tmp4xxtci1z.py", line 1, in <module>
list = [i for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s715186542 | p02393 | u050103511 | 1497511287 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | list = [int(i) for i in input().split()]
L = sort.list()
print(' '.join([str(i) for i in L])) | Traceback (most recent call last):
File "/tmp/tmpczyhxa3x/tmp_a6vdu6z.py", line 1, in <module>
list = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s798173977 | p02393 | u050103511 | 1497511352 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | list = [int(i) for i in input().split()]
L = list.sort()
print(' '.join([str(i) for i in L])) | Traceback (most recent call last):
File "/tmp/tmpr34cyf90/tmpc73u9mu_.py", line 1, in <module>
list = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s618076115 | p02393 | u050103511 | 1497511393 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | List = [int(i) for i in input().split()]
Sort = list.sort()
print(' '.join([str(i) for i in Sort])) | Traceback (most recent call last):
File "/tmp/tmpjlgz49fz/tmplt2ij4eo.py", line 1, in <module>
List = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s076825078 | p02393 | u050103511 | 1497511665 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | List = [int(i) for i in input().split()]
print(' '.join([i for i in sorted(List)])) | Traceback (most recent call last):
File "/tmp/tmpukvqlg8f/tmpw0rczccz.py", line 1, in <module>
List = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s181802747 | p02393 | u027278270 | 1497512075 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | n = list(map(int,input().split()))
n.sort()
print(n[0],n[1],n[2],sep=()) | Traceback (most recent call last):
File "/tmp/tmp6xp5h8zi/tmpbuk5j154.py", line 1, in <module>
n = list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s132914406 | p02393 | u569585396 | 1497513280 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | x = input().split()
i = list(map(int,x))
a = i[0]
b = i[1]
c = i[2]
re = '{} {} {}'.format(a,b,c)
re.reverse()
print(re) | Traceback (most recent call last):
File "/tmp/tmp2yxz3yvd/tmp529i9ra5.py", line 1, in <module>
x = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s381871513 | p02393 | u569585396 | 1497513429 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a,b,c = map(int.input().split())
if a <= b <= c:
print(a,b,c) | Traceback (most recent call last):
File "/tmp/tmpbzpa9g5h/tmp80zrvt4y.py", line 1, in <module>
a,b,c = map(int.input().split())
^^^^^^^^^
AttributeError: type object 'int' has no attribute 'input'
| |
s729257900 | p02393 | u569585396 | 1497513598 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x = map(int.input().split())
x.sort()
print(x) | Traceback (most recent call last):
File "/tmp/tmpkjp0y0ty/tmpecre4zoc.py", line 1, in <module>
x = map(int.input().split())
^^^^^^^^^
AttributeError: type object 'int' has no attribute 'input'
| |
s364839487 | p02393 | u569585396 | 1497513648 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = int(input())
x.sort()
print(x) | Traceback (most recent call last):
File "/tmp/tmp0o5x18wm/tmpboxca74g.py", line 1, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s160543358 | p02393 | u433181015 | 1497513861 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | nums = [int(i) for i in input().split()]
sort_nums = sort.nums
" ".join(sort_nums) | Traceback (most recent call last):
File "/tmp/tmph8e2pe3v/tmp0klc8f6b.py", line 1, in <module>
nums = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s934501941 | p02393 | u433181015 | 1497513926 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | nums = [int(i) for i in input().split()]
sort_nums = sort.nums
print(" ".join(sort_nums)) | Traceback (most recent call last):
File "/tmp/tmp1uqxvkrw/tmpeihbk2s4.py", line 1, in <module>
nums = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s843142960 | p02393 | u333596716 | 1497680894 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b,c=map(int,input().split())
a,b,c.sort()
print(a,b,c) | Traceback (most recent call last):
File "/tmp/tmpd1dr3oz3/tmpc2zghnfx.py", line 1, in <module>
a,b,c=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s536471757 | p02393 | u333596716 | 1497680984 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a,b,c=map(int,input().split())
numlist=a,b,c
print(numlist.sort()) | Traceback (most recent call last):
File "/tmp/tmpmx7kinfj/tmpvqeyehsn.py", line 1, in <module>
a,b,c=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s388119573 | p02393 | u333596716 | 1497762771 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b,c=map(int,input().split())
print(a,b,c.sort()) | Traceback (most recent call last):
File "/tmp/tmp1mzpd1k6/tmp045s43ga.py", line 1, in <module>
a,b,c=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s830805283 | p02393 | u333596716 | 1497763092 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a,b,c=map(int,input().split())
numlist=[a,b,c]
numlist.sort()
print numlist | File "/tmp/tmpfinofmtw/tmp25j8s16x.py", line 4
print numlist
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s456485402 | p02393 | u200401481 | 1497807733 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a = list(map(int,input().split()))
sort(a)
print(str(a[0])+" "+str(a[1])+" "+str(a[2])) | Traceback (most recent call last):
File "/tmp/tmpadovr1is/tmpl6brcjon.py", line 1, in <module>
a = list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s976991540 | p02393 | u698693989 | 1497834988 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | y=list(map(int,x))
a=y[0]
b=y[1]
c=y[2]
d=sorted([a,b,c])
print("{0} {1} {2}".format(d[0],d[1],d[2])) | Traceback (most recent call last):
File "/tmp/tmp8s66woe5/tmpxr_str8z.py", line 1, in <module>
y=list(map(int,x))
^
NameError: name 'x' is not defined
| |
s157478426 | p02393 | u569585396 | 1498029727 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | x = input().split()
i = list(map(int(x)))
a = i[0]
b = i[1]
c = i[2]
print('{} {} {}'.format(c,b,a)) | Traceback (most recent call last):
File "/tmp/tmp082mxy4h/tmpafech27y.py", line 1, in <module>
x = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s778506879 | p02393 | u261533743 | 1498029750 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | num = map(int,input().split())
num.sort()
print(num) | Traceback (most recent call last):
File "/tmp/tmptlnbjdj_/tmp9tv_owuh.py", line 1, in <module>
num = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s618950265 | p02393 | u410114382 | 1498029813 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | numberList.sort()
print(numberList) | Traceback (most recent call last):
File "/tmp/tmpyilf0ne_/tmpfvbn4gsh.py", line 1, in <module>
numberList.sort()
^^^^^^^^^^
NameError: name 'numberList' is not defined
| |
s742279039 | p02393 | u433181015 | 1498030131 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b,c = [int(i) for i in input().split()]
if a < b < c:
print"Yes"
else:
print"NO" | File "/tmp/tmphka7wj9b/tmpnrmk3jiw.py", line 3
print"Yes"
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s557899598 | p02393 | u410114382 | 1498030134 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | list = [3 8 1]
list.sort
print(list) | File "/tmp/tmpbguxykdi/tmp1487_p3o.py", line 1
list = [3 8 1]
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s022936814 | p02393 | u569585396 | 1498030403 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | x = input()
i = list(map(int,x))
??
i.sort
print(i) | File "/tmp/tmpe8u3pnu1/tmprpr65_lz.py", line 3
??
^
SyntaxError: invalid syntax
| |
s390863469 | p02393 | u623827446 | 1498030454 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | x=input().split()
y=list(map(int,x))
(i) in sorted(y)
print(i) | Traceback (most recent call last):
File "/tmp/tmpq03urmu5/tmplwwtdvip.py", line 1, in <module>
x=input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s775483188 | p02393 | u333596716 | 1498030782 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a,b,c=map(int,input().split())
print(sort(a,b,c)) | Traceback (most recent call last):
File "/tmp/tmp0na6kabq/tmp0pnkorbc.py", line 1, in <module>
a,b,c=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s655472672 | p02393 | u333596716 | 1498031025 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a,b,c=map(int,input().split())
d=sorted([a,b,c])
print "{0} {1} {2}".format(d[0],d[1],d[2]) | File "/tmp/tmp3qkb_h58/tmpijy_vtr2.py", line 3
print "{0} {1} {2}".format(d[0],d[1],d[2])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s103954676 | p02393 | u911624488 | 1498031224 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | nums = [int(i) for i in input().split()]
nums_sort = sorted(nums)
print "{}" "{}" "{}".format(nums_sort) | File "/tmp/tmpgxbvtwif/tmp51vqf6m_.py", line 3
print "{}" "{}" "{}".format(nums_sort)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s525883786 | p02393 | u911624488 | 1498031365 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | nums = [int(i) for i in input().split()]
nums_sort = sorted(nums)
nums_str = map(str, nums)
print "{}" "{}" "{}".format(nums_str) | File "/tmp/tmpi43evdnu/tmpwwp1kdrw.py", line 4
print "{}" "{}" "{}".format(nums_str)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s341237518 | p02393 | u692161606 | 1498031978 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a,b,c = map(int, input().split().sort())
n=sorted([a,b,c])
print "{0} {1} {2}".format.(n[0],n[1],n[2]) | File "/tmp/tmp4znk7r5d/tmpchvhw5ew.py", line 3
print "{0} {1} {2}".format.(n[0],n[1],n[2])
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s062387963 | p02393 | u464377021 | 1498116647 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | [a, b, c] = map(int, input().split())
min = min(a,b,c)
max = max(a,b,c)
nokori = sam(a,b,c) - min - max
print(min,nokori,max) | Traceback (most recent call last):
File "/tmp/tmpiufpa2qm/tmpbzu2l98y.py", line 1, in <module>
[a, b, c] = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s097240568 | p02393 | u890164142 | 1498194071 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | print(" ".join([str(i) for i in sorted([int(w) for w in input().split()])]) | File "/tmp/tmplx4e8x9a/tmph3_q1zkm.py", line 1
print(" ".join([str(i) for i in sorted([int(w) for w in input().split()])])
^
SyntaxError: '(' was never closed
| |
s832566052 | p02393 | u692161606 | 1498281440 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | a, b, c = map(int, input().split())
a, b, c.sort()
print "{0} {1} {2}".format(a[0], b[1], c[2]) | File "/tmp/tmp6ed8x9zb/tmp6qqauz1n.py", line 3
print "{0} {1} {2}".format(a[0], b[1], c[2])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s810266518 | p02393 | u818923713 | 1498402716 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | list = sorted(map(int,raw_input().split()))
strlist = map(str,list)
print strlist[0] + ' ' + strlist[1] + ' ' + strlist[2] | File "/tmp/tmp791y8hta/tmpszxo1sf6.py", line 3
print strlist[0] + ' ' + strlist[1] + ' ' + strlist[2]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s015861476 | p02393 | u818923713 | 1498402875 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b,c = sorted(map(input().split()))
print(a,b,c) | File "/tmp/tmpz98uptm3/tmpjvdq0qau.py", line 2
print(a,b,c)
IndentationError: unexpected indent
| |
s175404883 | p02393 | u818923713 | 1498402937 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a,b,c = sorted(input().split())
print(a,b,c) | File "/tmp/tmpwwxqgf2y/tmp45i0szgv.py", line 2
print(a,b,c)
IndentationError: unexpected indent
| |
s230542992 | p02393 | u818923713 | 1498402999 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a, b, c = sorted(input().split())
print(a, b, c) | File "/tmp/tmpzsiswd69/tmpvyp0p9lm.py", line 2
print(a, b, c)
IndentationError: unexpected indent
| |
s144392953 | p02393 | u043639882 | 1499840718 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a,b,c=map(int,input().split())
if a < b <c:
print("a < b < c")
elif | File "/tmp/tmpzsspt4l1/tmpatwb5dvq.py", line 4
elif
^
SyntaxError: invalid syntax
| |
s563800583 | p02393 | u043639882 | 1499901684 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | numbers=list(map(int,input().split()))
numbers.sort()
print(numbers[0] numbers[1] numbers[2]) | File "/tmp/tmpf3n97oi3/tmpzedns7or.py", line 3
print(numbers[0] numbers[1] numbers[2])
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s243708831 | p02393 | u663910047 | 1500119398 | Python | Python3 | py | Runtime Error | 0 | 0 | 175 | a,b,c=map(int,input().split())
if a >b:
x = a
a = b
b= x
else:
if b >c:
y = c
c=b
b=y
else:
if a > b:
x = a
a = b
b = x
else:
print (a,b,c) | File "/tmp/tmpfh44j4kd/tmpx3zpa_20.py", line 7
if b >c:
^
IndentationError: expected an indented block after 'else' statement on line 6
| |
s945983952 | p02393 | u853619096 | 1500303384 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | z = [input(i) for i in input().split()]
z =[int(i) for i in input().split()]
z.sort()
print("{0} {1} {2}".format(z[0],z[1],z[2])) | Traceback (most recent call last):
File "/tmp/tmpdwt851fu/tmp3snxs59h.py", line 1, in <module>
z = [input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s924693742 | p02393 | u721103753 | 1500529162 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a = list(int(i) for i in input().split())
a.sort()
b = " ".join(a) | Traceback (most recent call last):
File "/tmp/tmp84160fc0/tmp9ppfsxsc.py", line 1, in <module>
a = list(int(i) for i in input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s141569153 | p02393 | u888737393 | 1500682211 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | inputlines = list(map(int, input().split()))
li = inputlines.sort()
print(' '.join(map(str, li))) | Traceback (most recent call last):
File "/tmp/tmp8_ubbx7p/tmpqlb1718f.py", line 1, in <module>
inputlines = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s195848773 | p02393 | u853619096 | 1502509967 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a=list(map(int.input().split()))
a=sort(a)
print(" ".join(a)) | Traceback (most recent call last):
File "/tmp/tmprkt8jw4b/tmp1syjloht.py", line 1, in <module>
a=list(map(int.input().split()))
^^^^^^^^^
AttributeError: type object 'int' has no attribute 'input'
| |
s233051441 | p02393 | u853619096 | 1502510051 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a=list(map(int,input().split()))
a=a.sort()
print(" ".join(a)) | Traceback (most recent call last):
File "/tmp/tmp4eqmh2ss/tmpox09bfhr.py", line 1, in <module>
a=list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s265713244 | p02393 | u853619096 | 1502510715 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a=list(map(int,input().split()))
a.sort()
print(" ".join(a)) | Traceback (most recent call last):
File "/tmp/tmpcu704315/tmpa6b8i43s.py", line 1, in <module>
a=list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s394080964 | p02393 | u853619096 | 1502510913 | Python | Python3 | py | Runtime Error | 0 | 0 | 164 | a=list(map(int,input().split()))
a.sort()
print(" ".join(a))
a=list(map(int,input().split()))
a.sort()
alist=[]
for i in a:
alist+=str(i)
print(" ".join(alist)) | Traceback (most recent call last):
File "/tmp/tmp1aep78j5/tmpmyxs7tui.py", line 1, in <module>
a=list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s118362808 | p02393 | u117053676 | 1502801047 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = map(int,input().split())
a.sort()
print(a[0],a[1],a[2]) | Traceback (most recent call last):
File "/tmp/tmpgamfhdm8/tmpb271zmhh.py", line 1, in <module>
a = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s137678086 | p02393 | u744121389 | 1502852484 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x= map(input().split())
print(x.sort, sep=" ") | Traceback (most recent call last):
File "/tmp/tmprc_ffv26/tmpilpro13n.py", line 1, in <module>
x= map(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s939834259 | p02393 | u744121389 | 1502852676 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | x= [a,b,c]
a,b,c = (input().split())
x.sort()
print(x,sep=" ") | Traceback (most recent call last):
File "/tmp/tmpogjx1qai/tmpflq0gnni.py", line 1, in <module>
x= [a,b,c]
^
NameError: name 'a' is not defined
| |
s277423644 | p02393 | u744121389 | 1502853719 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | for i in x,input():
if x == 0:
break
print("Case " +i+ ": " + x) | File "/tmp/tmpbvj0f3x2/tmpwf7b2t4p.py", line 4
break
^
IndentationError: expected an indented block after 'if' statement on line 3
| |
s844901371 | p02393 | u744121389 | 1502853841 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | x = input()
for i in x:
if x == 0:
break
print("Case " +i+ ": " + x) | File "/tmp/tmp69aety83/tmpv077r1ok.py", line 6
break
^
IndentationError: expected an indented block after 'if' statement on line 5
| |
s471094283 | p02393 | u744121389 | 1502853930 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | x = input()
for i in x:
if x == 0:
break
print("Case " +i+ ": " + x) | File "/tmp/tmpgwbrgma8/tmpnmqus4cw.py", line 6
break
^
IndentationError: expected an indented block after 'if' statement on line 5
| |
s598516319 | p02393 | u283452598 | 1503039538 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | x = map(int,input().split())
print(" ".join(x.sort())) | Traceback (most recent call last):
File "/tmp/tmp9c1yh2et/tmplim_hzt2.py", line 1, in <module>
x = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s942420413 | p02393 | u283452598 | 1503039554 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | x = map(int,input().split())
print(" ".join(x.sort())) | Traceback (most recent call last):
File "/tmp/tmpa6kec3ak/tmprfe4dyjt.py", line 1, in <module>
x = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s479883240 | p02393 | u283452598 | 1503040968 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | x = list(map(int,input().split()))
x = sorted(x)
print("{0} {1} {2}".format(x[0],x[1],x[2]) | File "/tmp/tmpe290yxha/tmpdaxzlc_s.py", line 3
print("{0} {1} {2}".format(x[0],x[1],x[2])
^
SyntaxError: '(' was never closed
| |
s596335384 | p02393 | u283452598 | 1503040986 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | x = list(map(int,input().split()))
x = x.sort()
print("{0} {1} {2}".format(x[0],x[1],x[2]) | File "/tmp/tmpb3yf1i3t/tmp4ls0ehuf.py", line 3
print("{0} {1} {2}".format(x[0],x[1],x[2])
^
SyntaxError: '(' was never closed
| |
s905867681 | p02393 | u283452598 | 1503041024 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | x = list(map(int,input().split()))
x = x.sort()
print("{0} {1} {2}".format(x[0],x[1],x[2])) | Traceback (most recent call last):
File "/tmp/tmp4droxmqf/tmpu7xw507y.py", line 1, in <module>
x = list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s814712931 | p02393 | u316697096 | 1503134767 | Python | Python | py | Runtime Error | 0 | 0 | 73 | a,b,c=map(int,raw_input().split())
d=[]
d.append(a,b,c)
d.sort()
print d | File "/tmp/tmpkoxcr8tw/tmp5cdfylbr.py", line 6
print d
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s903154638 | p02393 | u544943822 | 1503550973 | Python | Python | py | Runtime Error | 0 | 0 | 247 | a,b,c=map(int, raw_input().split())
if a<b<c:
print('a < b <c')
elif a<c<b:
print('a < b < c<')
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 c<b<a:
print('c < b < a') | File "/tmp/tmpbcwrvnfx/tmp3cxde2fj.py", line 3
if a<b<c:
IndentationError: unexpected indent
| |
s915201301 | p02393 | u544943822 | 1503551188 | Python | Python | py | Runtime Error | 0 | 0 | 249 | a,b,c=map(int, raw_input().split())
if a<b<c:
print('a < b <???c')
elif a<c<b:
print('a < b < c')
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 c<b<a:
print('c < b < a') | File "/tmp/tmp7ea6k9nx/tmp4rs981b1.py", line 3
if a<b<c:
IndentationError: unexpected indent
| |
s113164219 | p02393 | u544943822 | 1503551303 | Python | Python | py | Runtime Error | 0 | 0 | 249 | a,b,c=map(int, raw_input().split())
if a<b<c:
print('a < b <???c')
elif a<c<b:
print('a < b < c')
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 c<b<a:
print('c < b < a') | File "/tmp/tmpotjvjine/tmpcdoa_atl.py", line 3
if a<b<c:
IndentationError: unexpected indent
| |
s571206837 | p02393 | u544943822 | 1503551533 | Python | Python | py | Runtime Error | 0 | 0 | 252 | a,b,c=map(int, raw_input().split())
if a<b<c:
print('a < b < c')
elif a<c<b:
print('a < b < c')
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 c<b<a:
print('c < b < a') | File "/tmp/tmp4ewjnn7y/tmpr_8jt45k.py", line 3
if a<b<c:
IndentationError: unexpected indent
| |
s258686159 | p02393 | u655518263 | 1505065679 | Python | Python | py | Runtime Error | 0 | 0 | 142 | lin = input()
l = lin.split(" ")
a = int(l[0])
b = int(l[1])
c = int(l[2])
l = [a,b,c]
l.sort()
print(str(l[0])+" "+str(l[1])+" "+str(l[2])) | Traceback (most recent call last):
File "/tmp/tmpjvvs2b1w/tmpohm26sbp.py", line 1, in <module>
lin = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s047440997 | p02393 | u362494298 | 1505103401 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | input().sort()
a,b,c = map(int, input().split())
print(a b c) | File "/tmp/tmp6pcyn14a/tmpss13dxru.py", line 3
print(a b c)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s101558927 | p02393 | u362494298 | 1505103534 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = map(int, input().split())
a.sort()
print(a[0], a[1], a[2]) | Traceback (most recent call last):
File "/tmp/tmpf6nz4tlf/tmpu4xy_2da.py", line 1, in <module>
a = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s211749630 | p02393 | u664228906 | 1506313652 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | a,b,c=map(int, input().split())
if a>b:
i=a
a = b
b = i
if b>c:
i=b
b=c
c=b
if a>c
i=a
a=c
c=a
str="{a} {b} {c}"
print(str.format(a=a, b=b, c=c) | File "/tmp/tmpy3kglnpd/tmpw8wt2mh8.py", line 10
if a>c
^
SyntaxError: expected ':'
| |
s070589986 | p02393 | u664228906 | 1506313675 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | a,b,c=map(int, input().split())
if a>b:
i=a
a = b
b = i
if b>c:
i=b
b=c
c=b
if a>c
i=a
a=c
c=i
str="{d} {e} {f}"
print(str.format(d=a, e=b, f=c) | File "/tmp/tmpnft5bibk/tmp2a6inkgf.py", line 10
if a>c
^
SyntaxError: expected ':'
| |
s580575227 | p02393 | u664228906 | 1506313705 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | a,b,c=map(int, input().split())
if a>b:
i=a
a = b
b = i
if b>c:
i=b
b=c
c=b
if a>c:
i=a
a=c
c=i
str="{d} {e} {f}"
print(str.format(d=a, e=b, f=c) | File "/tmp/tmpfc8dfl6h/tmpy8dhhjcz.py", line 16
print(str.format(d=a, e=b, f=c)
^
SyntaxError: '(' was never closed
| |
s425699293 | p02393 | u936401118 | 1506489106 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | count = int(input())
a = [int(input()) for i in range(count)]
a.sort()
for i in range(count):
print (a[i]) | Traceback (most recent call last):
File "/tmp/tmp7ointw3t/tmp9dfgxgv1.py", line 1, in <module>
count = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s413677470 | p02393 | u936401118 | 1506489191 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a = map(int, input().split())
a.sort()
for i in 3:
print (a[i]) | Traceback (most recent call last):
File "/tmp/tmp0xnmi21e/tmphq3bg3uv.py", line 1, in <module>
a = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s395743378 | p02393 | u936401118 | 1506489278 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = map(int, input().split())
a.sort()
for i in 3:
print (list(a[i]), ' ') | Traceback (most recent call last):
File "/tmp/tmp3122xt_n/tmpkfbradcw.py", line 1, in <module>
a = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s648751852 | p02393 | u505411588 | 1507288835 | Python | Python3 | py | Runtime Error | 40 | 7708 | 272 | a, b, c = map(int, input().split())
if a < b:
if a < c:
x = a
if b < c:
y = b
z = c
else:
y = c
z = b
else:
x = c
y = a
z = b
elif a < c:
x = b
y = a
z = c
elif b < c:
x = b
y = c
x = a
else:
x = c
y = b
z = a
print(x, y, z) | Traceback (most recent call last):
File "/tmp/tmpxd8ijoon/tmpa9xb18io.py", line 1, in <module>
a, b, c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s516377346 | p02393 | u505411588 | 1507289392 | Python | Python3 | py | Runtime Error | 20 | 7720 | 269 | a, b, c = map(int, input().split())
if a < b:
if a < c:
x = a
if b < c:
y = b
z = c
else:
y = c
z = b
else:
x = c
y = a
z = b
elif a < c:
x = b
y = a
z = c
elif b < c:
x = b
y = c
x = a
else:
x = c
y = b
z = a
print(x, y, z) | Traceback (most recent call last):
File "/tmp/tmpgo7e4wj8/tmpjd3jt_3a.py", line 1, in <module>
a, b, c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s545672197 | p02393 | u505411588 | 1507289565 | Python | Python3 | py | Runtime Error | 20 | 7724 | 269 | a, b, c = map(int, input().split())
if a < b:
if a < c:
x = a
if b < c:
y = b
z = c
else:
y = c
z = b
else:
x = c
y = a
z = b
elif a < c:
x = b
y = a
z = c
elif b < c:
x = b
y = c
x = a
else:
x = c
y = b
z = a
print(x, y, z) | Traceback (most recent call last):
File "/tmp/tmpqq8se4s9/tmp2jbasqsi.py", line 1, in <module>
a, b, c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s414921724 | p02393 | u183224403 | 1507423975 | Python | Python | py | Runtime Error | 0 | 0 | 167 | a = sorted(list(map(int, input().split())))
for i in range(len(a)):
if i == 0:
print(a[i], end="")
else:
print(' '+ '{}'.format(a[i]), end="") | Traceback (most recent call last):
File "/tmp/tmp074v2wbs/tmpsxi6xug_.py", line 1, in <module>
a = sorted(list(map(int, input().split())))
^^^^^^^
EOFError: EOF when reading a line
| |
s275085318 | p02393 | u102664642 | 1507824055 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | l = map(int,raw_input().split())
L = sorted(l,key=int)
print L[0],L[1],L[2] | File "/tmp/tmphvv530h6/tmp5stafk49.py", line 3
print L[0],L[1],L[2]
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s555068914 | p02393 | u102664642 | 1507824192 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | l = map(int,raw_input().split())
L = sorted(l,key=int)
print str(L[0]),str(L[1]),str(L[2]) | File "/tmp/tmp35usaqpe/tmpau25268a.py", line 3
print str(L[0]),str(L[1]),str(L[2])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s017893584 | p02393 | u102664642 | 1507899409 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | l = map(int,raw_input().split())
L = sorted(l,key=int)
print "L[0]","L[1]","L[2]" | File "/tmp/tmpnu278iau/tmp8mgzdbt6.py", line 3
print "L[0]","L[1]","L[2]"
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s901302747 | p02393 | u102664642 | 1507899590 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | l = sorted(map(int,raw_input().split())))
print str(l[0]),str(l[1]),str(l[2]) | File "/tmp/tmp6kn9_ni1/tmp_nkwk1z5.py", line 1
l = sorted(map(int,raw_input().split())))
^
SyntaxError: unmatched ')'
| |
s023815510 | p02393 | u102664642 | 1507899719 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | l = sorted(map(int,raw_input().split())))
print (str(l[0]),str(l[1]),str(l[2])) | File "/tmp/tmppe_b7tqn/tmpmmxqvwo_.py", line 1
l = sorted(map(int,raw_input().split())))
^
SyntaxError: unmatched ')'
| |
s871745298 | p02393 | u102664642 | 1507900077 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | l=sorted(map(int,raw_input()))
print(l[0],l[1],l[2]) | Traceback (most recent call last):
File "/tmp/tmpaqttvav0/tmpqmxwaf8v.py", line 1, in <module>
l=sorted(map(int,raw_input()))
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s927057291 | p02393 | u102664642 | 1507900114 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | l=sorted(map(int,raw_input().split()))
print(l[0],l[1],l[2]) | Traceback (most recent call last):
File "/tmp/tmpw_o32z9i/tmp8z_vm8za.py", line 1, in <module>
l=sorted(map(int,raw_input().split()))
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s439361220 | p02393 | u102664642 | 1507900935 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | l=list(sorted(map(int,raw_input().split())))
print(l[0],l[[1],l[2]) | File "/tmp/tmppr9erax2/tmp5crsn3zs.py", line 2
print(l[0],l[[1],l[2])
^
SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
| |
s188262711 | p02393 | u102664642 | 1507901002 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | l=sorted(list(map(int,raw_input().split())))
print(l[0],l[[1],l[2]) | File "/tmp/tmp_n_p5aa0/tmph7lyd5ch.py", line 2
print(l[0],l[[1],l[2])
^
SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
| |
s655117435 | p02393 | u102664642 | 1507901032 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | l=sorted(list(map(int,raw_input().split())))
print(l[0],l[[1],l[2]) | File "/tmp/tmp08cbmo5z/tmpgqbkhfxr.py", line 2
print(l[0],l[[1],l[2])
^
SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
| |
s666172360 | p02393 | u102664642 | 1507901067 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | l=sorted(list(map(int,raw_input().split())))
print(l[0],l[1],l[2]) | Traceback (most recent call last):
File "/tmp/tmpjrbm09el/tmpq05ebd1m.py", line 1, in <module>
l=sorted(list(map(int,raw_input().split())))
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s433170398 | p02393 | u102664642 | 1507901999 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | l=list(map(int,raw_input().split()))
L=sorted(l)
print(L[0],L[1],L[2]) | Traceback (most recent call last):
File "/tmp/tmptqgizqjb/tmpv36st5fl.py", line 1, in <module>
l=list(map(int,raw_input().split()))
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s163181498 | p02393 | u824030785 | 1508251847 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = list(int, input().split())
a.sort()
print(a[0], a[1], a[2]) | Traceback (most recent call last):
File "/tmp/tmpmpv4gy2j/tmp5hw0gef8.py", line 1, in <module>
a = list(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s394862399 | p02393 | u043968625 | 1509260749 | Python | Python3 | py | Runtime Error | 0 | 0 | 256 | num=[int(i) for i in input().split()]
for i in range(len(num)):
for j in range(i+1,len(num)+1):
if num[i]>num[j]:
bigger = num[i]
num[i]=num[j]
num[j]=bigger
for i in range(len(num)):
print(num[i],end="") | Traceback (most recent call last):
File "/tmp/tmpms3rvsal/tmpm6eiisn1.py", line 1, in <module>
num=[int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s375305762 | p02393 | u518939641 | 1509379718 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | print(sorted(list(map(int,input().split()))) | File "/tmp/tmpov0_48nb/tmp042r9t6m.py", line 1
print(sorted(list(map(int,input().split())))
^
SyntaxError: '(' was never closed
| |
s103431437 | p02393 | u725391514 | 1510379268 | Python | Python3 | py | Runtime Error | 50 | 7600 | 467 | a, b, c= map(int,input().split())
if a<b:
if b<c:
x=a
y=b
z=c
elif b>c:
if c<a:
x=c
y=a
z=b
else:
x=a
y=c
z=b
if a>b:
if b>c:
x=c
y=b
z=a
elif b<c:
if c<a:
x=b
y=c
z=a
else:
x=b
y=a
z=c
print(str(x)+" "+str(y)+" "+str(z)) | Traceback (most recent call last):
File "/tmp/tmpgjaacjjl/tmpl1jbbjea.py", line 1, in <module>
a, b, c= map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s028080523 | p02393 | u725391514 | 1510379319 | Python | Python3 | py | Runtime Error | 20 | 7744 | 467 | a, b, c= map(int,input().split())
if a<b:
if b<c:
x=a
y=b
z=c
elif b>c:
if c<a:
x=c
y=a
z=b
else:
x=a
y=c
z=b
if a>b:
if b>c:
x=c
y=b
z=a
elif b<c:
if c<a:
x=b
y=c
z=a
else:
x=b
y=a
z=c
print(str(x)+" "+str(y)+" "+str(z)) | Traceback (most recent call last):
File "/tmp/tmp1bqddzl0/tmpecg8914j.py", line 1, in <module>
a, b, c= map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s508686294 | p02393 | u725391514 | 1510379372 | Python | Python3 | py | Runtime Error | 0 | 0 | 474 | a, b, c= map(int,input().split())
if a=<b:
if b=<c:
x=a
y=b
z=c
elif b=>c:
if c=<a:
x=c
y=a
z=b
else:
x=a
y=c
z=b
if a=>b:
if b>c:
x=c
y=b
z=a
elif b=<c:
if c=<a:
x=b
y=c
z=a
else:
x=b
y=a
z=c
print(str(x)+" "+str(y)+" "+str(z)) | File "/tmp/tmp2hhgd7l7/tmpy4yen8z0.py", line 2
if a=<b:
^
SyntaxError: invalid syntax
| |
s655435019 | p02393 | u725391514 | 1510379434 | Python | Python3 | py | Runtime Error | 0 | 0 | 469 | a, b, c= map(int,input().split())
if a=<b:
if b<c:
x=a
y=b
z=c
elif b>c:
if c<a:
x=c
y=a
z=b
else:
x=a
y=c
z=b
if a=>b:
if b>c:
x=c
y=b
z=a
elif b<c:
if c<a:
x=b
y=c
z=a
else:
x=b
y=a
z=c
print(str(x)+" "+str(y)+" "+str(z)) | File "/tmp/tmpsw2poul_/tmpb03l8c9g.py", line 2
if a=<b:
^
SyntaxError: invalid syntax
| |
s218442675 | p02393 | u899891332 | 1510468089 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | print(sorted(intput().split())).join(' ') | Traceback (most recent call last):
File "/tmp/tmp74xq2z2g/tmp6otc16p1.py", line 1, in <module>
print(sorted(intput().split())).join(' ')
^^^^^^
NameError: name 'intput' is not defined. Did you mean: 'input'?
| |
s629550115 | p02393 | u899891332 | 1510468109 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | print(sorted(input().split())).join(' ') | Traceback (most recent call last):
File "/tmp/tmp8x823tco/tmpn16w0znh.py", line 1, in <module>
print(sorted(input().split())).join(' ')
^^^^^^^
EOFError: EOF when reading a line
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.