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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s378379325 | p02388 | u380973049 | 1527059351 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print (x^3\)
| File "/tmp/tmpnk28wmt8/tmpc4ccbdtv.py", line 2
print (x^3\)
^
SyntaxError: unexpected character after line continuation character
| |
s226052111 | p02388 | u380973049 | 1527059945 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = input()
print (x ** 3)
| Traceback (most recent call last):
File "/tmp/tmp6w1k7hzv/tmpkwn7bafq.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s246781599 | p02388 | u380973049 | 1527059991 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = input()
print (x ** 3\n)
| File "/tmp/tmpg_zvnb33/tmprug2m0hk.py", line 2
print (x ** 3\n)
^
SyntaxError: unexpected character after line continuation character
| |
s602907386 | p02388 | u987236471 | 1527154576 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpzjwc18by/tmpodos5gsf.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s350139981 | p02388 | u987236471 | 1527154877 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x>=1 and x<=100
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpso9976iy/tmp_0z516vy.py", line 1, in <module>
x>=1 and x<=100
^
NameError: name 'x' is not defined
| |
s246937158 | p02388 | u987236471 | 1527157285 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpw87by4dr/tmpdkid__sf.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s938125490 | p02388 | u237094818 | 1527358787 | Python | Python | py | Runtime Error | 0 | 0 | 117 | # -*- coding:utf-8
X = amp(int, raw_input().split())
R = X[0]*X[1]
P = 2*X[0]+2*X[1]
A = str(R)+" "+str(P)
print(A)
| Traceback (most recent call last):
File "/tmp/tmp4dltjhlg/tmpl_14v7zz.py", line 3, in <module>
X = amp(int, raw_input().split())
^^^
NameError: name 'amp' is not defined
| |
s170520359 | p02388 | u176580590 | 1527410334 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a = int(input("x"))
if 1 <= x <= 100:
print(a**3)
else:
print("error")
| Traceback (most recent call last):
File "/tmp/tmp7kvona2x/tmp536bxegm.py", line 1, in <module>
a = int(input("x"))
^^^^^^^^^^
EOFError: EOF when reading a line
| x |
s301513642 | p02388 | u966110132 | 1527449353 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | a=input()
print a**3
| File "/tmp/tmpuu4wtt0m/tmp9h6f4jwc.py", line 2
print a**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s205182587 | p02388 | u966110132 | 1527449427 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x=int(input())
print x**3
| File "/tmp/tmpnqmkb9ry/tmp6vypqoms.py", line 2
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s272745096 | p02388 | u549319121 | 1527494232 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | x = input()
print(x * x * x)
| Traceback (most recent call last):
File "/tmp/tmp8a5myi75/tmpteyiv35d.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s764497578 | p02388 | u229973939 | 1527507149 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 |
x = input()
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpu754rjxw/tmpqq_2rwcg.py", line 2, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s405362471 | p02388 | u229973939 | 1527507195 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 |
x = input()
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmp816czs2s/tmpe1_1kgpu.py", line 2, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s666518215 | p02388 | u229973939 | 1527507304 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 |
x = input()
y = x ** 3
print(y)
| Traceback (most recent call last):
File "/tmp/tmpk7n53vi7/tmp6m7pvnce.py", line 2, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s506753366 | p02388 | u745214779 | 1527639086 | Python | Python3 | py | Runtime Error | 0 | 0 | 14 | output (x**3)
| Traceback (most recent call last):
File "/tmp/tmpb07fu3x1/tmpcx3w_bat.py", line 1, in <module>
output (x**3)
^^^^^^
NameError: name 'output' is not defined
| |
s373029304 | p02388 | u745214779 | 1527639141 | Python | Python3 | py | Runtime Error | 0 | 0 | 5 | x**3
| Traceback (most recent call last):
File "/tmp/tmp1_iu4dr8/tmpk22titaa.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s289840112 | p02388 | u745214779 | 1527639201 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | input (x)
x**3
| Traceback (most recent call last):
File "/tmp/tmp4p9jipfp/tmpwb9sq8p1.py", line 1, in <module>
input (x)
^
NameError: name 'x' is not defined
| |
s176000886 | p02388 | u745214779 | 1527639361 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | x = input()
x**3
| Traceback (most recent call last):
File "/tmp/tmp0op1yaks/tmp_l1ezese.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s725747490 | p02388 | u745214779 | 1527639629 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpdleyv1fl/tmp3ktewnzp.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s469089457 | p02388 | u378873972 | 1527692310 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | s = input("")
ans = s * s * s
print(ans)
| Traceback (most recent call last):
File "/tmp/tmpa9ao49bu/tmpya5re0ga.py", line 1, in <module>
s = input("")
^^^^^^^^^
EOFError: EOF when reading a line
| |
s690240969 | p02388 | u990900604 | 1527766657 | Python | Python | py | Runtime Error | 0 | 0 | 38 | import sys
print int(sys.argv[1])**3
| File "/tmp/tmp5ae8eiwq/tmp20oll5xb.py", line 3
print int(sys.argv[1])**3
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s187345504 | p02388 | u990900604 | 1527766736 | Python | Python | py | Runtime Error | 0 | 0 | 42 | import sys
x=int(sys.argv[1])
print x**3
| File "/tmp/tmpxw2iagz2/tmpso4fj8yo.py", line 4
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s384436304 | p02388 | u990900604 | 1527766967 | Python | Python | py | Runtime Error | 0 | 0 | 43 | import sys
x=int(sys.stdin[0])
print x**3
| File "/tmp/tmpeqvjybd5/tmp_z0je742.py", line 4
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s167010491 | p02388 | u047228785 | 1527999855 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | x = 2
print x ** 3
| File "/tmp/tmpor42p_9g/tmph4avxbjo.py", line 2
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s289349811 | p02388 | u494777951 | 1528012554 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | import math
print(math.pow(x, 3))
| Traceback (most recent call last):
File "/tmp/tmp_tuw_wxm/tmp7uj_boaz.py", line 3, in <module>
print(math.pow(x, 3))
^
NameError: name 'x' is not defined
| |
s629074064 | p02388 | u494777951 | 1528014968 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | int(input())
print(x * x * x)
| Traceback (most recent call last):
File "/tmp/tmpxc6gvl6m/tmp_utpvpd5.py", line 1, in <module>
int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s875372849 | p02388 | u000531457 | 1528018764 | Python | Python3 | py | Runtime Error | 0 | 0 | 5 | X**3
| Traceback (most recent call last):
File "/tmp/tmpp8usszgb/tmpb1sy2tqo.py", line 1, in <module>
X**3
^
NameError: name 'X' is not defined
| |
s844330584 | p02388 | u327546577 | 1528134981 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | print(int(input)**3)
| Traceback (most recent call last):
File "/tmp/tmpl6c97s6j/tmpk2wc7iqt.py", line 1, in <module>
print(int(input)**3)
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s374095542 | p02388 | u929141425 | 1528200321 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 |
x = input('number?')
y = int(x)
print(x**3+ "\n")
| Traceback (most recent call last):
File "/tmp/tmppqsizxvy/tmp37xridrg.py", line 2, in <module>
x = input('number?')
^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| number? |
s099153502 | p02388 | u767368698 | 1528363201 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | a = raw_input()
print(pow(a, 3))
| Traceback (most recent call last):
File "/tmp/tmpfwzaz789/tmpllvcj_gs.py", line 1, in <module>
a = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s674329214 | p02388 | u767368698 | 1528363307 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a = int(raw_input())
print(pow(a, 3))
| Traceback (most recent call last):
File "/tmp/tmp7mcc59lx/tmp1l6z913k.py", line 1, in <module>
a = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s690364339 | p02388 | u597483031 | 1528367909 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | print(int(input()**3))
| Traceback (most recent call last):
File "/tmp/tmpl6akdbh9/tmp2ijjufu0.py", line 1, in <module>
print(int(input()**3))
^^^^^^^
EOFError: EOF when reading a line
| |
s520274184 | p02388 | u609159835 | 1528542001 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print(x**2)
| Traceback (most recent call last):
File "/tmp/tmpm3_1m2na/tmpvrh6n0ha.py", line 1, in <module>
print(x**2)
^
NameError: name 'x' is not defined
| |
s501153551 | p02388 | u609159835 | 1528542008 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x*x)
| Traceback (most recent call last):
File "/tmp/tmphe_7wq9o/tmp20kxy7cx.py", line 1, in <module>
print(x*x)
^
NameError: name 'x' is not defined
| |
s172367170 | p02388 | u987236471 | 1528792675 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp0804hho7/tmpuqakxfmc.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s127508605 | p02388 | u987236471 | 1528792789 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpkn1hwlxz/tmpqk7pjlw3.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s110893244 | p02388 | u987236471 | 1528800837 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x =input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp533l6fmf/tmpxtlcu1xp.py", line 1, in <module>
x =input()
^^^^^^^
EOFError: EOF when reading a line
| |
s834351358 | p02388 | u420214671 | 1528941221 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmp3o_q1sxu/tmptufyqmu8.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s227377830 | p02388 | u624324865 | 1529040644 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x=int(input())
print X**3
| File "/tmp/tmp_21nlb1h/tmpdr7qhxwc.py", line 2
print X**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s678601037 | p02388 | u800780602 | 1529040972 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x^3)
| Traceback (most recent call last):
File "/tmp/tmp3cygb4oq/tmpley73msm.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s709080194 | p02388 | u800780602 | 1529040999 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpm6xxcmya/tmpz18hhme6.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s826425334 | p02388 | u955389483 | 1529387664 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | x = input()
for i in range(2):
if i == 0:
y = x
y = x * y
print(y)
| Traceback (most recent call last):
File "/tmp/tmpl9lms7pa/tmp3v214svc.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s036936394 | p02388 | u872428181 | 1529395139 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | num = input()
return num ** 3
| File "/tmp/tmprad_q7nf/tmp_5firpdx.py", line 2
return num ** 3
^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s367615831 | p02388 | u872428181 | 1529395444 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | num = input()
print(num ** 3)
| Traceback (most recent call last):
File "/tmp/tmp8xv6w8am/tmpfm8apfxl.py", line 1, in <module>
num = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s986503995 | p02388 | u986523878 | 1529409922 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | x = imput('>>>')
x = x*x*x
print(x)
| Traceback (most recent call last):
File "/tmp/tmph10hm04y/tmpuost6qx3.py", line 1, in <module>
x = imput('>>>')
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s807338763 | p02388 | u986523878 | 1529410031 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | x = input('>>>')
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpobsishjc/tmpzuvatgqr.py", line 1, in <module>
x = input('>>>')
^^^^^^^^^^^^
EOFError: EOF when reading a line
| >>> |
s954457209 | p02388 | u986523878 | 1529410598 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = imput('#')
print(int(x)**3)
| Traceback (most recent call last):
File "/tmp/tmpqdr_09co/tmpg64hy2xd.py", line 1, in <module>
x = imput('#')
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s533243464 | p02388 | u986523878 | 1529410824 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(int(x)**3)
| Traceback (most recent call last):
File "/tmp/tmpxksqvcqv/tmpms3btwmi.py", line 1, in <module>
print(int(x)**3)
^
NameError: name 'x' is not defined
| |
s591284431 | p02388 | u986523878 | 1529410927 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = input()
orint(int(x)**3)
| Traceback (most recent call last):
File "/tmp/tmpkcgxemjr/tmpbuvg82jd.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s914730728 | p02388 | u630270191 | 1529461412 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | input(x)
print(x * x * x)
| Traceback (most recent call last):
File "/tmp/tmp8af8n6hq/tmpsir1o06g.py", line 1, in <module>
input(x)
^
NameError: name 'x' is not defined
| |
s623601338 | p02388 | u649777480 | 1529746645 | Python | Python | py | Runtime Error | 0 | 0 | 12 | print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpv5q4awf3/tmp4dh57occ.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s557766359 | p02388 | u629779621 | 1529957990 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print(input()**3)
| Traceback (most recent call last):
File "/tmp/tmp38_pur_d/tmpckl277kn.py", line 1, in <module>
print(input()**3)
^^^^^^^
EOFError: EOF when reading a line
| |
s690439224 | p02388 | u272954367 | 1530163277 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | X=x^3
x=2
print(x)
x=3
print(x)
| Traceback (most recent call last):
File "/tmp/tmpst1lluur/tmpupq2e3_z.py", line 1, in <module>
X=x^3
^
NameError: name 'x' is not defined
| |
s760381719 | p02388 | u272954367 | 1530163544 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x=x^3
x=input()
print(x)
| Traceback (most recent call last):
File "/tmp/tmpt3t04m4i/tmpd7z4boci.py", line 1, in <module>
x=x^3
^
NameError: name 'x' is not defined
| |
s000642305 | p02388 | u272954367 | 1530163600 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | X=x^3
x=input()
print(X)
| Traceback (most recent call last):
File "/tmp/tmp8y4q2p_g/tmpx3qhvije.py", line 1, in <module>
X=x^3
^
NameError: name 'x' is not defined
| |
s256984821 | p02388 | u272954367 | 1530163655 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | X=x*x*x
x=input()
print(X)
| Traceback (most recent call last):
File "/tmp/tmpuczj2ic2/tmpojm99dyi.py", line 1, in <module>
X=x*x*x
^
NameError: name 'x' is not defined
| |
s733112041 | p02388 | u987236471 | 1530173181 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp83d7pefh/tmp5g8p25gz.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s183544139 | p02388 | u987236471 | 1530173326 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | int (x = input()
print(x**3))
| File "/tmp/tmp9lna8sgt/tmp1tqobb11.py", line 1
int (x = input()
^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s056318749 | p02388 | u841945203 | 1530201852 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 |
x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp6mflobki/tmprh0l80vn.py", line 2, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s841893236 | p02388 | u466526478 | 1530336645 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | def triple(n):
n = n * 3
return n
print(triple(n))
| Traceback (most recent call last):
File "/tmp/tmpq4op473d/tmpkyv7dm9i.py", line 5, in <module>
print(triple(n))
^
NameError: name 'n' is not defined
| |
s149178380 | p02388 | u466526478 | 1530336663 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | def triple(n):
n = n * 3
return n
print(int(triple(x)))
| Traceback (most recent call last):
File "/tmp/tmphf3lfvgw/tmpu9nqmhs3.py", line 5, in <module>
print(int(triple(x)))
^
NameError: name 'x' is not defined
| |
s916928347 | p02388 | u466526478 | 1530336676 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | def triple(n):
n = n * 3
return n
print(triple(x))
| Traceback (most recent call last):
File "/tmp/tmpruuo4nfl/tmppz0_r629.py", line 5, in <module>
print(triple(x))
^
NameError: name 'x' is not defined
| |
s787616240 | p02388 | u466526478 | 1530336805 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | def triple(n):
if n >= 1:
if n <= 100:
n = n * 3
return n
print(triple(x))
| Traceback (most recent call last):
File "/tmp/tmpytesp7jq/tmpoqkovzuz.py", line 8, in <module>
print(triple(x))
^
NameError: name 'x' is not defined
| |
s174561358 | p02388 | u987236471 | 1530338215 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x =input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpk3h4hzkp/tmpx6ylt9k1.py", line 1, in <module>
x =input()
^^^^^^^
EOFError: EOF when reading a line
| |
s356721726 | p02388 | u987236471 | 1530339688 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmprgjtxc1w/tmp85o7t775.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s088793197 | p02388 | u435831485 | 1530359930 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x=input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp9h_rq49x/tmpn8ho7m2z.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s840046272 | p02388 | u435831485 | 1530361065 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x=input()
y=x**3
print(y)
| Traceback (most recent call last):
File "/tmp/tmpxx1_h5oh/tmpvrb_mstl.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s345877636 | p02388 | u435831485 | 1530361517 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | x=input()
if x==1 print(1)
else print(x**3)
| File "/tmp/tmppscwgsdd/tmpuuym7h87.py", line 2
if x==1 print(1)
^^^^^
SyntaxError: invalid syntax
| |
s081168974 | p02388 | u075013193 | 1530441806 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | while True:
x = input()
if 0<=int(x)<=100:
break
ans=int(x)**3
print(ans\n)
| File "/tmp/tmp5664m_iq/tmprka0t1ii.py", line 7
print(ans\n)
^
SyntaxError: unexpected character after line continuation character
| |
s165534924 | p02388 | u956645355 | 1530541366 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | #include <iostream>
#include <cmath>
using namespace std;
int main() {
int x;
int ans;
cin >> x;
ans = pow(x, 3);
cout << ans << endl;
return 0;
}
| File "/tmp/tmptuns5ze2/tmpt_kz1rfu.py", line 3
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s740890651 | p02388 | u258445230 | 1530668966 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | s=input()
print(s*s*s)
| Traceback (most recent call last):
File "/tmp/tmpf421qo1l/tmp0myinuyo.py", line 1, in <module>
s=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s108588218 | p02388 | u258445230 | 1530669025 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | s=input()
print(s*s*s)
| Traceback (most recent call last):
File "/tmp/tmptlfe3c7o/tmpeomd_80h.py", line 1, in <module>
s=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s559690782 | p02388 | u258445230 | 1530669257 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | s=input()
print(s**3)
| Traceback (most recent call last):
File "/tmp/tmp8qdt1zws/tmp0f617lks.py", line 1, in <module>
s=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s573206827 | p02388 | u258445230 | 1530669278 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | s=input()
a=s**3
print(a)
| Traceback (most recent call last):
File "/tmp/tmpmall6aj9/tmpupbr64l_.py", line 1, in <module>
s=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s557143705 | p02388 | u282635979 | 1362229173 | Python | Python | py | Runtime Error | 0 | 0 | 6 | x ** 3 | Traceback (most recent call last):
File "/tmp/tmpu_aa89og/tmput5snit2.py", line 1, in <module>
x ** 3
^
NameError: name 'x' is not defined
| |
s049558404 | p02388 | u282635979 | 1362229347 | Python | Python | py | Runtime Error | 0 | 0 | 17 | a = x**3
print(a) | Traceback (most recent call last):
File "/tmp/tmp3_vqe93l/tmp18aebxrt.py", line 1, in <module>
a = x**3
^
NameError: name 'x' is not defined
| |
s492752947 | p02388 | u413456759 | 1365239219 | Python | Python | py | Runtime Error | 0 | 0 | 34 | x = raw_input("x = ")
print x ** 3 | File "/tmp/tmphsd8le0b/tmpnb8zbrkr.py", line 2
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s924027816 | p02388 | u912237403 | 1371202990 | Python | Python | py | Runtime Error | 0 | 0 | 39 | for x in raw_input:
print int(x)**3 | File "/tmp/tmpuz_5_kv8/tmphrbx6r09.py", line 2
print int(x)**3
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s891691983 | p02388 | u351182591 | 1375190287 | Python | Python | py | Runtime Error | 0 | 0 | 50 | import sys
a = int(sys.argv[1])
b = a ** 3
print b | File "/tmp/tmphaaapwcc/tmpl8wpb2j9.py", line 4
print b
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s022868176 | p02388 | u351182591 | 1375190519 | Python | Python | py | Runtime Error | 0 | 0 | 50 | import sys
a = int(sys.argv[0])
b = a ** 3
print b | File "/tmp/tmpmn2mdnkd/tmpmw3ugt9g.py", line 4
print b
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s209304268 | p02388 | u351182591 | 1375191999 | Python | Python | py | Runtime Error | 0 | 0 | 27 | print int(raw_imput()) ** 3 | File "/tmp/tmpcxw372w3/tmprkrofoka.py", line 1
print int(raw_imput()) ** 3
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s200742268 | p02388 | u146816547 | 1383374768 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a = map(int,raw_input().split())
print a**3 | File "/tmp/tmpmgptepqp/tmpwv36gwiu.py", line 2
print a**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s327579328 | p02388 | u633068244 | 1393312694 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x=input()
print x * x * x\n | File "/tmp/tmprkgq1hfr/tmpw3drhb56.py", line 2
print x * x * x\n
^
SyntaxError: unexpected character after line continuation character
| |
s430153563 | p02388 | u821897729 | 1397204781 | Python | Python | py | Runtime Error | 0 | 0 | 39 | S288C_reference_genome_R64-1-1_20110203 | Traceback (most recent call last):
File "/tmp/tmpxsi7itvk/tmpwfaf71fn.py", line 1, in <module>
S288C_reference_genome_R64-1-1_20110203
^^^^^^^^^^^^^^^^^^^^^^^^^^
NameError: name 'S288C_reference_genome_R64' is not defined
| |
s772307396 | p02388 | u971748390 | 1398066138 | Python | Python | py | Runtime Error | 0 | 0 | 40 | i int x,y ;
x=input();
y=x^3 ;
print y ; | File "/tmp/tmp25te1aqr/tmpk4m2z3n9.py", line 1
i int x,y ;
^^^
SyntaxError: invalid syntax
| |
s282749169 | p02388 | u971748390 | 1398066180 | Python | Python | py | Runtime Error | 0 | 0 | 38 | int x,y ;
x=input();
y=x^3 ;
print y ; | File "/tmp/tmpw2p_hjt4/tmpsrkd6_tz.py", line 1
int x,y ;
^
SyntaxError: invalid syntax
| |
s992466179 | p02388 | u971748390 | 1398066294 | Python | Python | py | Runtime Error | 0 | 0 | 40 | x=input();
y=x*x*x ;
print y ;
return 0; | File "/tmp/tmpf51a44_j/tmpfdwk9_wu.py", line 3
print y ;
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s074337608 | p02388 | u881100444 | 1399959429 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | n = input()
print(n**3) | Traceback (most recent call last):
File "/tmp/tmpkvs9pjb5/tmprf4eijtg.py", line 1, in <module>
n = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s123532750 | p02388 | u436634575 | 1400711034 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) | Traceback (most recent call last):
File "/tmp/tmp99ul_l4t/tmpskuzdxdi.py", line 1, in <module>
print(input()**3)
^^^^^^^
EOFError: EOF when reading a line
| |
s823247043 | p02388 | u802502925 | 1401179340 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import sys
for line in sys.stdin.readlines():
print pow(int(line),3) | File "/tmp/tmpda4888ce/tmpaq_82il1.py", line 3
print pow(int(line),3)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s044427610 | p02388 | u802502925 | 1401179355 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import sys
for line in sys.stdin.readlines():
print pow(int(line),3) | File "/tmp/tmplvaesoku/tmpfkdcpf7w.py", line 3
print pow(int(line),3)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s776699831 | p02388 | u802502925 | 1401179495 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | print(pow(int(raw_input()),3)) | Traceback (most recent call last):
File "/tmp/tmppibcd6bh/tmp64gekkev.py", line 1, in <module>
print(pow(int(raw_input()),3))
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s966849808 | p02388 | u992434746 | 1401775469 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | # coding: utf-8
if __name__ == '__main__':
x = input()
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmp333mc61d/tmpgxzlc180.py", line 5, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s914241342 | p02388 | u992434746 | 1401775517 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | # coding: utf-8
if __name__ == '__main__':
x = input()
print(x ** 3 + '\n') | Traceback (most recent call last):
File "/tmp/tmp6ozg610x/tmpcgw10oj2.py", line 5, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s741748035 | p02388 | u992434746 | 1401775598 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = input()
print(x ** 3 + '\n') | Traceback (most recent call last):
File "/tmp/tmpqmfpp5um/tmps0csg3_q.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s469622184 | p02388 | u992434746 | 1401775611 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmpcdhy_6p_/tmp3d3yayk5.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s169301897 | p02388 | u992434746 | 1401775700 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = raw_input()
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmp84tqb9so/tmpjsji1ue8.py", line 1, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s844524927 | p02388 | u992434746 | 1401775770 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmpwurrv97t/tmpxedv41j7.py", line 1, in <module>
print(x ** 3)
^
NameError: name 'x' is not defined
| |
s656407563 | p02388 | u992434746 | 1401775878 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = input()
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmps3lptt4d/tmp3o_jc4f0.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s184203125 | p02388 | u186524656 | 1402031555 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print (input())**3 | Traceback (most recent call last):
File "/tmp/tmpgc9w5lg5/tmpwkztwn4a.py", line 1, in <module>
print (input())**3
^^^^^^^
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.