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
s573811572
p02388
u043639882
1499672030
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmpspsc0cwt/tmpt436fcgp.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s228829149
p02388
u043639882
1499672129
Python
Python3
py
Runtime Error
0
0
4
x**3
Traceback (most recent call last): File "/tmp/tmpq3n20nv6/tmpiimo6tqx.py", line 1, in <module> x**3 ^ NameError: name 'x' is not defined
s874310245
p02388
u043639882
1499692260
Python
Python3
py
Runtime Error
0
0
17
print(input()**3)
Traceback (most recent call last): File "/tmp/tmp0q_fd5t0/tmpdw2pyux_.py", line 1, in <module> print(input()**3) ^^^^^^^ EOFError: EOF when reading a line
s239141185
p02388
u043639882
1499692337
Python
Python3
py
Runtime Error
0
0
21
x=input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpoc1mikrb/tmp4ex75ow1.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s210026726
p02388
u043639882
1499692552
Python
Python3
py
Runtime Error
0
0
22
x = input() print x**3
File "/tmp/tmpx1m_iy9m/tmp3syy5twf.py", line 2 print x**3 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s182152210
p02388
u043639882
1499692586
Python
Python3
py
Runtime Error
0
0
23
x = input() print x*x*x
File "/tmp/tmpx93hax6f/tmpwqqiwu8k.py", line 2 print x*x*x ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s957420196
p02388
u043639882
1499692619
Python
Python3
py
Runtime Error
0
0
23
x = input() print x*x*x
File "/tmp/tmptli6v85m/tmpymlcgq4k.py", line 2 print x*x*x ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s990568805
p02388
u043639882
1499692724
Python
Python3
py
Runtime Error
0
0
16
print input()**3
File "/tmp/tmpgchai447/tmpgw3gar32.py", line 1 print input()**3 ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s210860070
p02388
u043639882
1499692746
Python
Python3
py
Runtime Error
0
0
16
print input()**3
File "/tmp/tmpjfjawa8m/tmp3w0th5dx.py", line 1 print input()**3 ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s901364047
p02388
u043639882
1499692919
Python
Python3
py
Runtime Error
0
0
17
print input()**3
File "/tmp/tmp40i_senb/tmpzialva18.py", line 1 print input()**3 ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s772822656
p02388
u043639882
1499692999
Python
Python3
py
Runtime Error
0
0
27
x = int(input()) print x**3
File "/tmp/tmpkyo9t0h6/tmp4vylcs92.py", line 2 print x**3 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s774234010
p02388
u311299757
1499693007
Python
Python3
py
Runtime Error
0
0
12
print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpelu9k9t5/tmpy0dqiw6u.py", line 1, in <module> print(x*x*x) ^ NameError: name 'x' is not defined
s308747698
p02388
u311299757
1499693050
Python
Python3
py
Runtime Error
0
0
18
a = x*x*x print(a)
Traceback (most recent call last): File "/tmp/tmpvou186fa/tmp1hdtp_do.py", line 1, in <module> a = x*x*x ^ NameError: name 'x' is not defined
s800680541
p02388
u311299757
1499693096
Python
Python3
py
Runtime Error
0
0
33
a = x * x * x print({}.format(a))
Traceback (most recent call last): File "/tmp/tmpox58ttfa/tmpueufvrv5.py", line 1, in <module> a = x * x * x ^ NameError: name 'x' is not defined
s749872606
p02388
u043639882
1499693145
Python
Python3
py
Runtime Error
0
0
25
x=int(input()) print x**3
File "/tmp/tmpw__ap4_a/tmpl167yee7.py", line 2 print x**3 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s994513610
p02388
u311299757
1499693193
Python
Python3
py
Runtime Error
0
0
24
x = input() print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpt28e2yd8/tmpnn2ul_up.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s195907129
p02388
u043639882
1499693226
Python
Python3
py
Runtime Error
0
0
17
print(input()**3)
Traceback (most recent call last): File "/tmp/tmplue_a5cl/tmp6_nc8l8e.py", line 1, in <module> print(input()**3) ^^^^^^^ EOFError: EOF when reading a line
s040549712
p02388
u311299757
1499693257
Python
Python3
py
Runtime Error
0
0
22
x = input print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpci8y7xjh/tmp1huf1jiu.py", line 2, in <module> print(x*x*x) ~^~ TypeError: unsupported operand type(s) for *: 'builtin_function_or_method' and 'builtin_function_or_method'
s366200884
p02388
u311299757
1499693307
Python
Python3
py
Runtime Error
0
0
24
x = input() print(x*x*x)
Traceback (most recent call last): File "/tmp/tmplfc78v4k/tmpbhqmvg5l.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s934068491
p02388
u311299757
1499693698
Python
Python3
py
Runtime Error
0
0
17
a,b=input.split()
Traceback (most recent call last): File "/tmp/tmp3n8egcl9/tmp0qz4s7uu.py", line 1, in <module> a,b=input.split() ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s310717201
p02388
u311299757
1499693765
Python
Python3
py
Runtime Error
0
0
63
Arr=input.split() print(Arr[0]*Arr[1]) print(2*Arr[0]+2*Arr[1])
Traceback (most recent call last): File "/tmp/tmpguf4ifil/tmp04trk6t6.py", line 1, in <module> Arr=input.split() ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s983891356
p02388
u311299757
1499694096
Python
Python3
py
Runtime Error
0
0
70
Arr=[] Arr=input.split() print(Arr[0]*Arr[1]) print(2*Arr[0]+2*Arr[1])
Traceback (most recent call last): File "/tmp/tmpknzkmwhh/tmptulkt3g5.py", line 2, in <module> Arr=input.split() ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s489930139
p02388
u311299757
1499694545
Python
Python3
py
Runtime Error
0
0
77
[a,b]=input.split() a = int(a) b = int(b) print("{} {}".format(a*b, 2*a+2*b))
Traceback (most recent call last): File "/tmp/tmpj9xhowmr/tmp9_0jmoea.py", line 1, in <module> [a,b]=input.split() ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s612456550
p02388
u043639882
1499742898
Python
Python3
py
Runtime Error
0
0
21
x=input() print(x**3)
Traceback (most recent call last): File "/tmp/tmprcp4tdng/tmpcgkcxj6j.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s594134172
p02388
u848091001
1499751227
Python
Python3
py
Runtime Error
0
0
17
y = x**3 print(y)
Traceback (most recent call last): File "/tmp/tmprx807972/tmpd0g4qp3l.py", line 1, in <module> y = x**3 ^ NameError: name 'x' is not defined
s549898132
p02388
u848091001
1499751335
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmp7n7801ln/tmpdbp3j22g.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s669804070
p02388
u848091001
1499751470
Python
Python3
py
Runtime Error
0
0
19
input x print(x**3)
File "/tmp/tmpo53le55p/tmpu65k7d9h.py", line 1 input x ^ SyntaxError: invalid syntax
s341954868
p02388
u498511622
1500081750
Python
Python3
py
Runtime Error
0
0
35
x = input() y = x**3 print int(y)
File "/tmp/tmp9hln8_ti/tmpjimv_ati.py", line 5 print int(y) ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s322040224
p02388
u853619096
1500293996
Python
Python3
py
Runtime Error
0
0
29
y = input() x = y**3 print(x)
Traceback (most recent call last): File "/tmp/tmpb6fx5g1p/tmp8gnjaln8.py", line 1, in <module> y = input() ^^^^^^^ EOFError: EOF when reading a line
s669888805
p02388
u003647700
1500657520
Python
Python3
py
Runtime Error
0
0
24
n = input() print (n**3)
Traceback (most recent call last): File "/tmp/tmp5_nnba_g/tmpbmul0dv1.py", line 1, in <module> n = input() ^^^^^^^ EOFError: EOF when reading a line
s978775690
p02388
u003647700
1500657615
Python
Python3
py
Runtime Error
0
0
35
n = raw_input() print (int(n) ** 3)
Traceback (most recent call last): File "/tmp/tmp7kfhzyl1/tmp9r1vky1c.py", line 1, in <module> n = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s171334226
p02388
u138422838
1500805911
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmp0bufz9ki/tmp_fudv3u0.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s611392625
p02388
u138422838
1500805927
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpjnxc752f/tmpcwcxe1un.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s532120378
p02388
u138422838
1500806000
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmp42wdd7n6/tmp71i5nd0p.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s370521374
p02388
u138422838
1500806052
Python
Python3
py
Runtime Error
0
0
29
x = input() y = x**3 print(y)
Traceback (most recent call last): File "/tmp/tmpkpzv5isn/tmp110m4gs6.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s394808119
p02388
u791170614
1501141921
Python
Python3
py
Runtime Error
0
0
109
n = int(input()) s = int(input()) def fact(s): if s == 0 : return 1 return n * fact(s - 1) print(fact(s))
Traceback (most recent call last): File "/tmp/tmp3r71m6y3/tmpmn28nv21.py", line 1, in <module> n = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s199183568
p02388
u363496707
1501400362
Python
Python
py
Runtime Error
0
0
28
x = raw_input() print x ** 3
File "/tmp/tmpihaickbz/tmpej_cst7o.py", line 2 print x ** 3 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s636413842
p02388
u957028788
1501909180
Python
Python
py
Runtime Error
0
0
28
x = raw_input() print x ** 2
File "/tmp/tmpyctqutkc/tmpiay5hxnp.py", line 2 print x ** 2 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s450812187
p02388
u957028788
1501909243
Python
Python
py
Runtime Error
0
0
28
x = raw_input() print x ** 3
File "/tmp/tmpa47pgdoa/tmpi1m4kbz8.py", line 2 print x ** 3 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s876842573
p02388
u957028788
1501909296
Python
Python3
py
Runtime Error
0
0
28
x = raw_input() print x ** 3
File "/tmp/tmp01yh25lz/tmpyp4kh1tu.py", line 2 print x ** 3 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s227313982
p02388
u957028788
1501909481
Python
Python
py
Runtime Error
0
0
28
x = raw_input() print x ** 3
File "/tmp/tmp88gbzx5_/tmpzypu15m9.py", line 2 print x ** 3 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s954738250
p02388
u103382858
1502022861
Python
Python3
py
Runtime Error
0
0
26
h1=input() print(h1*h1*h1)
Traceback (most recent call last): File "/tmp/tmpf4_2msta/tmp2ebvdlej.py", line 1, in <module> h1=input() ^^^^^^^ EOFError: EOF when reading a line
s529858432
p02388
u103382858
1502022879
Python
Python3
py
Runtime Error
0
0
32
h1=input() h = h1*h1*h1 print(h)
Traceback (most recent call last): File "/tmp/tmpm1gd0bls/tmp08lepwdp.py", line 1, in <module> h1=input() ^^^^^^^ EOFError: EOF when reading a line
s738133660
p02388
u103382858
1502023049
Python
Python3
py
Runtime Error
0
0
26
h1=input() print(h1*h1*h1)
Traceback (most recent call last): File "/tmp/tmpi04qa3pv/tmp1scpaxqq.py", line 1, in <module> h1=input() ^^^^^^^ EOFError: EOF when reading a line
s083610072
p02388
u103382858
1502023187
Python
Python3
py
Runtime Error
0
0
29
h1=input() h = h1**3 print(h)
Traceback (most recent call last): File "/tmp/tmpvviqsyzd/tmpj77h4g61.py", line 1, in <module> h1=input() ^^^^^^^ EOFError: EOF when reading a line
s037534255
p02388
u103382858
1502023202
Python
Python3
py
Runtime Error
0
0
35
x = input() y = x**3 print int(y)
File "/tmp/tmpee02h42r/tmp0b8807zr.py", line 5 print int(y) ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s846233689
p02388
u103382858
1502023219
Python
Python3
py
Runtime Error
0
0
50
#coding:UTF-8 x = input() y = x**3 print int(y)
File "/tmp/tmp062qd6mm/tmpww26oo8t.py", line 7 print int(y) ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s806999500
p02388
u103382858
1502023305
Python
Python3
py
Runtime Error
0
0
97
x = int(input("x????????????")) print(str(x)+"????????????"+str(x*x*x)) print(eval(input())**3)
File "/tmp/tmp_px5_6mm/tmp1e91j1w8.py", line 4 print(eval(input())**3) IndentationError: unexpected indent
s744742310
p02388
u103382858
1502023314
Python
Python3
py
Runtime Error
0
0
75
x = int() print(str(x)+"????????????"+str(x*x*x)) print(eval(input())**3)
File "/tmp/tmpd7h_2n5z/tmpdv72bxbe.py", line 4 print(eval(input())**3) IndentationError: unexpected indent
s938838796
p02388
u103382858
1502023365
Python
Python3
py
Runtime Error
0
0
82
x = int(input()) print(str(x)+"????????????"+str(x*x*x)) print(eval(input())**3)
File "/tmp/tmp_h7350u_/tmpp0vg6kym.py", line 4 print(eval(input())**3) IndentationError: unexpected indent
s191386121
p02388
u142321256
1502345956
Python
Python3
py
Runtime Error
0
0
17
print(input()**3)
Traceback (most recent call last): File "/tmp/tmp60v5u4gq/tmpsebki1hq.py", line 1, in <module> print(input()**3) ^^^^^^^ EOFError: EOF when reading a line
s041239200
p02388
u744121389
1502349833
Python
Python3
py
Runtime Error
0
0
49
number = input(x=:) x = int(number) print(x***)
File "/tmp/tmpmg8y3wa9/tmpxlshfvs5.py", line 1 number = input(x=:) ^ SyntaxError: invalid syntax
s937871508
p02388
u369093003
1502359408
Python
Python3
py
Runtime Error
0
0
27
x = int(input) print(x**3)
Traceback (most recent call last): File "/tmp/tmp_eg3g66z/tmpk0qus5in.py", line 1, in <module> x = int(input) ^^^^^^^^^^ TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
s386584300
p02388
u369093003
1502359500
Python
Python3
py
Runtime Error
0
0
26
x = int(input) print(x**3)
Traceback (most recent call last): File "/tmp/tmpa4ubdtfj/tmpmfnnktso.py", line 1, in <module> x = int(input) ^^^^^^^^^^ TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
s269122599
p02388
u369093003
1502359552
Python
Python3
py
Runtime Error
0
0
27
x = int(input) print(x**3)
Traceback (most recent call last): File "/tmp/tmpz191x5s5/tmp0mgw2ufp.py", line 1, in <module> x = int(input) ^^^^^^^^^^ TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
s740519023
p02388
u733159526
1502715965
Python
Python3
py
Runtime Error
0
0
17
print(input()**3)
Traceback (most recent call last): File "/tmp/tmpzkbqjzjg/tmpmkcw8aqm.py", line 1, in <module> print(input()**3) ^^^^^^^ EOFError: EOF when reading a line
s935526766
p02388
u316697096
1503129809
Python
Python
py
Runtime Error
0
0
33
x=raw_input("> ") x=x*x*x print x
File "/tmp/tmpkcr9s6fh/tmp424w7n_3.py", line 3 print x ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s117363356
p02388
u316697096
1503129864
Python
Python
py
Runtime Error
0
0
29
x=raw_input() x=x*x*x print x
File "/tmp/tmpqlcifx4y/tmpxq__s2_s.py", line 3 print x ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s840054931
p02388
u395334793
1503249466
Python
Python3
py
Runtime Error
0
0
32
x = map(input(),int) print(x**3)
Traceback (most recent call last): File "/tmp/tmpzmt39vxx/tmp4k6oe32b.py", line 1, in <module> x = map(input(),int) ^^^^^^^ EOFError: EOF when reading a line
s925200226
p02388
u070117804
1503375379
Python
Python3
py
Runtime Error
0
0
29
x=int(input()) print(pow(x,3)
File "/tmp/tmp9lckbnyr/tmp45fah3ds.py", line 2 print(pow(x,3) ^ SyntaxError: '(' was never closed
s783253628
p02388
u506705885
1503412436
Python
Python3
py
Runtime Error
0
0
30
num=input() print(num*num*num)
Traceback (most recent call last): File "/tmp/tmpf5gs7rxl/tmpegm2th0_.py", line 1, in <module> num=input() ^^^^^^^ EOFError: EOF when reading a line
s767991234
p02388
u617778316
1503467070
Python
Python
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmpz0j4_rxx/tmpks0t0up6.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s030893989
p02388
u617778316
1503467132
Python
Python
py
Runtime Error
0
0
19
input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpoz1e1350/tmpv49bpr6s.py", line 1, in <module> input() EOFError: EOF when reading a line
s931908255
p02388
u940395729
1503475934
Python
Python3
py
Runtime Error
0
0
30
X = input() y = x*x*x print(y)
Traceback (most recent call last): File "/tmp/tmplto7lex2/tmpeqc_dtg9.py", line 1, in <module> X = input() ^^^^^^^ EOFError: EOF when reading a line
s849949199
p02388
u940395729
1503475956
Python
Python3
py
Runtime Error
0
0
30
X = input() y = x*x*x print(y)
Traceback (most recent call last): File "/tmp/tmpjbj03la9/tmpcc878ktd.py", line 1, in <module> X = input() ^^^^^^^ EOFError: EOF when reading a line
s676424411
p02388
u940395729
1503476020
Python
Python3
py
Runtime Error
0
0
30
x = input() y = x*x*x print(y)
Traceback (most recent call last): File "/tmp/tmppv586nen/tmplvvo30e5.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s837980724
p02388
u504355829
1503507898
Python
Python3
py
Runtime Error
0
0
46
x = input() for x in 1<= x <= 100 print(x^3)
File "/tmp/tmpcvnc4a_d/tmpep9prl_s.py", line 2 for x in 1<= x <= 100 ^ SyntaxError: expected ':'
s052926992
p02388
u105694406
1503722406
Python
Python
py
Runtime Error
0
0
37
import sys n = sys.argv print n*n*n
File "/tmp/tmps4vvc8dy/tmp9jlfi344.py", line 5 print n*n*n ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s214502244
p02388
u105694406
1503722708
Python
Python3
py
Runtime Error
0
0
52
import sys n = int(sys.argv[1]) n = n*n*n print (n)
Traceback (most recent call last): File "/tmp/tmp_hck5ng4/tmp899s19v6.py", line 3, in <module> n = int(sys.argv[1]) ~~~~~~~~^^^ IndexError: list index out of range
s972330474
p02388
u153665391
1503829793
Python
Python3
py
Runtime Error
0
0
72
import sys args = sys.argv num = int(args[1]) print( num * num * num )
Traceback (most recent call last): File "/tmp/tmp0y4rqmss/tmp10h_yree.py", line 4, in <module> num = int(args[1]) ~~~~^^^ IndexError: list index out of range
s145303494
p02388
u153665391
1503829838
Python
Python3
py
Runtime Error
0
0
72
import sys args = sys.argv num = int(args[1]) print( num * num * num )
Traceback (most recent call last): File "/tmp/tmpn6n9y_ls/tmp6v3ujmrr.py", line 4, in <module> num = int(args[1]) ~~~~^^^ IndexError: list index out of range
s783860313
p02388
u266640508
1503886621
Python
Python3
py
Runtime Error
0
0
22
input(x) print(x ** 3)
Traceback (most recent call last): File "/tmp/tmpi3pw96a1/tmpg7pqlt4a.py", line 1, in <module> input(x) ^ NameError: name 'x' is not defined
s253513461
p02388
u266640508
1503886637
Python
Python3
py
Runtime Error
0
0
22
input(x) print(x ** 3)
Traceback (most recent call last): File "/tmp/tmpdk_skcp2/tmpptspr04x.py", line 1, in <module> input(x) ^ NameError: name 'x' is not defined
s889178294
p02388
u266640508
1503886654
Python
Python3
py
Runtime Error
0
0
22
input(x) print(x ** 3)
Traceback (most recent call last): File "/tmp/tmpyoamggie/tmpoa_vqz1d.py", line 1, in <module> input(x) ^ NameError: name 'x' is not defined
s516373888
p02388
u445380745
1504091326
Python
Python3
py
Runtime Error
0
0
40
for x in range(1,101) print(x ** 3)
File "/tmp/tmp8c5v9hw0/tmparjqr8jh.py", line 1 for x in range(1,101) ^ SyntaxError: expected ':'
s346776414
p02388
u445380745
1504091413
Python
Python3
py
Runtime Error
0
0
40
for x in range(1,101) print(x ** 3)
File "/tmp/tmp41o5syvx/tmpiuxr5aan.py", line 1 for x in range(1,101) ^ SyntaxError: expected ':'
s307864271
p02388
u445380745
1504091608
Python
Python3
py
Runtime Error
0
0
55
print('Input x :') cube = input('>> ') print(cube ** 3)
Traceback (most recent call last): File "/tmp/tmpyvzhjpar/tmpf3a95plk.py", line 2, in <module> cube = input('>> ') ^^^^^^^^^^^^ EOFError: EOF when reading a line
Input x : >>
s192247046
p02388
u445380745
1504091762
Python
Python3
py
Runtime Error
0
0
36
cube = input('>> ') print(cube **3 )
Traceback (most recent call last): File "/tmp/tmp3z17zh9g/tmpn5itiix2.py", line 1, in <module> cube = input('>> ') ^^^^^^^^^^^^ EOFError: EOF when reading a line
>>
s505917612
p02388
u445380745
1504091928
Python
Python3
py
Runtime Error
0
0
37
for x in range(1,101) print(x ** 3)
File "/tmp/tmpa75j0bbj/tmpg4piodvr.py", line 1 for x in range(1,101) ^ SyntaxError: expected ':'
s445999555
p02388
u445380745
1504092579
Python
Python3
py
Runtime Error
0
0
121
print('Input x') x = int(input()) while x <1 | x > 100 print('Input x again:') x = int(input()) print(x ** 3)
File "/tmp/tmpq44_72af/tmp1wo0z79m.py", line 4 while x <1 | x > 100 ^ SyntaxError: expected ':'
s678213277
p02388
u192570203
1504262692
Python
Python3
py
Runtime Error
0
0
29
a = input() print(a * a * a)
Traceback (most recent call last): File "/tmp/tmpekf59lbm/tmp0x270_he.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s669431938
p02388
u666221014
1504273051
Python
Python3
py
Runtime Error
0
0
20
print(int(input)**3)
Traceback (most recent call last): File "/tmp/tmpungjm4ec/tmp203p81qm.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'
s101944379
p02388
u132415474
1504516132
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmpctbsc46h/tmpy_mtjliq.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s282710696
p02388
u132415474
1504516145
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmp631lgvr5/tmp_xrg54ys.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s962456495
p02388
u294922877
1504709680
Python
Python3
py
Runtime Error
0
0
17
print(input()**3)
Traceback (most recent call last): File "/tmp/tmp78p8_pgs/tmpxa36mlnv.py", line 1, in <module> print(input()**3) ^^^^^^^ EOFError: EOF when reading a line
s077913952
p02388
u294922877
1504709710
Python
Python3
py
Runtime Error
0
0
21
x=input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpfophu615/tmpsaqul7na.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s567778693
p02388
u362494298
1504851596
Python
Python3
py
Runtime Error
0
0
12
print(X*X*X)
Traceback (most recent call last): File "/tmp/tmpdgadqke8/tmpbzw30g52.py", line 1, in <module> print(X*X*X) ^ NameError: name 'X' is not defined
s098284337
p02388
u058546845
1504949192
Python
Python3
py
Runtime Error
0
0
25
a=input() b=a**3 print(b)
Traceback (most recent call last): File "/tmp/tmpr206a6y1/tmps2nusdsa.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s750116159
p02388
u088372268
1505360850
Python
Python3
py
Runtime Error
0
0
18
int(x) print(x**3)
Traceback (most recent call last): File "/tmp/tmp7vrkvnzt/tmpixam8bpv.py", line 1, in <module> int(x) ^ NameError: name 'x' is not defined
s866968953
p02388
u579699497
1505461899
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmp0r9aj_29/tmpb3em7d7t.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s868558113
p02388
u230079906
1506825447
Python
Python3
py
Runtime Error
0
0
24
n = input() print(n*n*n)
Traceback (most recent call last): File "/tmp/tmpdz1r74gd/tmpnobczkdc.py", line 1, in <module> n = input() ^^^^^^^ EOFError: EOF when reading a line
s497111851
p02388
u266640508
1507166702
Python
Python3
py
Runtime Error
0
0
25
x = input() print(x ** 3)
Traceback (most recent call last): File "/tmp/tmpzi2fnsun/tmp05s3gdrt.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s193095432
p02388
u266640508
1507166775
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpfqur6u8x/tmpliatrqoz.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s581237880
p02388
u266640508
1507175352
Python
Python3
py
Runtime Error
0
0
31
x = input() y = x ** 3 print(y)
Traceback (most recent call last): File "/tmp/tmpg_sjbh3j/tmp9yf9yh_h.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s371648289
p02388
u266640508
1507176082
Python
Python3
py
Runtime Error
0
0
21
x = input() pow(x, 3)
Traceback (most recent call last): File "/tmp/tmpqhmql1jd/tmp7efsexp2.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s683635193
p02388
u266640508
1507176111
Python
Python3
py
Runtime Error
0
0
34
x = input() y = pow(x, 3) print(y)
Traceback (most recent call last): File "/tmp/tmp0cfmy123/tmp9zx0uv8t.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s591737553
p02388
u266640508
1507176188
Python
Python3
py
Runtime Error
0
0
31
x = input() y = x ** 3 print(y)
Traceback (most recent call last): File "/tmp/tmpaf9xt695/tmpqied0qi1.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s373004737
p02388
u219202227
1507274197
Python
Python3
py
Runtime Error
0
0
33
input = input() return input ** 2
File "/tmp/tmpz745d5cg/tmp78d4p8z5.py", line 2 return input ** 2 ^^^^^^^^^^^^^^^^^ SyntaxError: 'return' outside function
s117329566
p02388
u219202227
1507274266
Python
Python3
py
Runtime Error
0
0
33
input = input() print(input ** 2)
Traceback (most recent call last): File "/tmp/tmpqi4iw6qn/tmpgla8h6we.py", line 1, in <module> input = input() ^^^^^^^ EOFError: EOF when reading a line
s483689289
p02388
u219202227
1507274305
Python
Python3
py
Runtime Error
0
0
33
input = input() return input ** 3
File "/tmp/tmprl_5rm38/tmp0q90_gdw.py", line 2 return input ** 3 ^^^^^^^^^^^^^^^^^ SyntaxError: 'return' outside function