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
s100336667
p02388
u888595898
1419859332
Python
Python3
py
Runtime Error
0
0
34
x = int(raw_input()) print(x ** 3)
Traceback (most recent call last): File "/tmp/tmppmhhyix9/tmpylxflvx5.py", line 1, in <module> x = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s375200495
p02388
u567380442
1419908025
Python
Python3
py
Runtime Error
0
0
25
print(int(input()) ** 3)
File "/tmp/tmph_a2zwzl/tmpn9teb856.py", line 1 print(int(input()) ** 3) IndentationError: unexpected indent
s872421826
p02388
u427046303
1420440230
Python
Python3
py
Runtime Error
0
0
55
import sys param = sys.argv print( int(param[1]) ** 3 )
Traceback (most recent call last): File "/tmp/tmphnuirxh6/tmpgsgg6_ga.py", line 3, in <module> print( int(param[1]) ** 3 ) ~~~~~^^^ IndexError: list index out of range
s710799431
p02388
u427046303
1420440476
Python
Python3
py
Runtime Error
0
0
55
import sys param = sys.argv print( int(param[1]) ** 3 )
Traceback (most recent call last): File "/tmp/tmp2it6uq9n/tmpc4nbm_bm.py", line 3, in <module> print( int(param[1]) ** 3 ) ~~~~~^^^ IndexError: list index out of range
s878315958
p02388
u427046303
1420440521
Python
Python3
py
Runtime Error
0
0
57
import sys param = sys.argv print( int(param[1]) ** 3 )
Traceback (most recent call last): File "/tmp/tmp1dui4hkj/tmp9wd7dyzo.py", line 5, in <module> print( int(param[1]) ** 3 ) ~~~~~^^^ IndexError: list index out of range
s031690448
p02388
u427046303
1420440543
Python
Python3
py
Runtime Error
0
0
47
param = sys.argv print( int(param[1]) ** 3 )
Traceback (most recent call last): File "/tmp/tmp3t_g27fd/tmp81xr53mg.py", line 3, in <module> param = sys.argv ^^^ NameError: name 'sys' is not defined
s030231355
p02388
u427046303
1420441304
Python
Python3
py
Runtime Error
0
0
99
param = sys.argv if( len(param) > 1 ): print( int(param[1]) ** 3 ) else: print("")
Traceback (most recent call last): File "/tmp/tmpe3xy5wie/tmp21cus492.py", line 1, in <module> param = sys.argv ^^^ NameError: name 'sys' is not defined
s045824409
p02388
u965894812
1421076963
Python
Python
py
Runtime Error
0
0
31
x = raw_input() print x * x * x
File "/tmp/tmpkbv6l7t_/tmp1yajr2d7.py", line 2 print x * x * x ^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s482221319
p02388
u965894812
1421077194
Python
Python
py
Runtime Error
0
0
31
x = raw_input() print x * x * x
File "/tmp/tmpbhhox0ub/tmpiw2ld2vx.py", line 2 print x * x * x ^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s232771521
p02388
u965894812
1421077242
Python
Python
py
Runtime Error
0
0
37
x = raw_input() print x * x * x, '\n'
File "/tmp/tmp7fcifa_x/tmpyuhvq6kl.py", line 2 print x * x * x, '\n' ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s737773825
p02388
u965894812
1421077360
Python
Python
py
Runtime Error
0
0
40
x = raw_input() print x * x * x print ''
File "/tmp/tmps0bgib0a/tmpugr_hgb_.py", line 2 print x * x * x ^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s964101590
p02388
u965894812
1421077587
Python
Python
py
Runtime Error
0
0
27
x = raw_input() print x**3,
File "/tmp/tmpo8rs18vu/tmpc9pos613.py", line 2 print x**3, ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s952639723
p02388
u527848444
1422234949
Python
Python3
py
Runtime Error
0
0
26
x = (input()) print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpfbot__nc/tmpm883n_a4.py", line 1, in <module> x = (input()) ^^^^^^^ EOFError: EOF when reading a line
s773420152
p02388
u442346200
1422234957
Python
Python3
py
Runtime Error
0
0
32
x = int(input() print(x * x * x)
File "/tmp/tmpff3oukr3/tmppupihaia.py", line 1 x = int(input() ^ SyntaxError: '(' was never closed
s932879910
p02388
u879226672
1422975284
Python
Python
py
Runtime Error
0
0
65
import sys num = sys.stdin.readline() ans = num*num*num print ans
File "/tmp/tmp7iqm2dfx/tmpqo05s4ga.py", line 4 print ans ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s797702884
p02388
u442472098
1422977885
Python
Python3
py
Runtime Error
0
0
17
print(input()**3)
Traceback (most recent call last): File "/tmp/tmp6dr9f0yd/tmppaxqw_p3.py", line 1, in <module> print(input()**3) ^^^^^^^ EOFError: EOF when reading a line
s846671814
p02388
u823877876
1423215999
Python
Python
py
Runtime Error
0
0
63
import sys argvs = sys.argv x = int(argvs[1]) print str(x**3)
File "/tmp/tmpz06eza60/tmp6zzt2x94.py", line 6 print str(x**3) ^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s887254708
p02388
u604774382
1423480428
Python
Python3
py
Runtime Error
0
0
27
x=raw_input() print( x**3 )
Traceback (most recent call last): File "/tmp/tmp02tgmxk1/tmp2bjl77mq.py", line 1, in <module> x=raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s035073979
p02388
u604774382
1423480671
Python
Python3
py
Runtime Error
0
0
23
x=input() print( x**3 )
Traceback (most recent call last): File "/tmp/tmppnigb81s/tmpb16ywjxf.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s760213149
p02388
u604774382
1423480891
Python
Python3
py
Runtime Error
0
0
20
x=input() print x**3
File "/tmp/tmp4r5hc7ze/tmpfnqds5bm.py", line 2 print x**3 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s488952476
p02388
u604774382
1423481612
Python
Python3
py
Runtime Error
0
0
37
#coding:utf-8 x=input() print( x**3 )
Traceback (most recent call last): File "/tmp/tmp3a_j0iei/tmpynqxbq_y.py", line 2, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s645483609
p02388
u604774382
1423481867
Python
Python3
py
Runtime Error
0
0
37
#coding:utf-8 x=input() print( x**3 )
Traceback (most recent call last): File "/tmp/tmpgge4lhsh/tmpk9a27w6y.py", line 2, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s357260668
p02388
u604774382
1423481884
Python
Python3
py
Runtime Error
0
0
34
#coding:utf-8 x=input() print x**3
File "/tmp/tmp76tynpa1/tmp9gtjip1m.py", line 3 print x**3 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s140785824
p02388
u604774382
1423481970
Python
Python
py
Runtime Error
0
0
41
#coding:utf-8 x=raw_input() print( x**3 )
Traceback (most recent call last): File "/tmp/tmpc5h86u2q/tmp3hmpj3rx.py", line 2, in <module> x=raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s351025073
p02388
u604774382
1423482116
Python
Python3
py
Runtime Error
0
0
37
#coding:utf-8 x=input() print( x**3 )
Traceback (most recent call last): File "/tmp/tmpc5qq532q/tmpv_8o6v9k.py", line 2, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s753486761
p02388
u604774382
1423482142
Python
Python3
py
Runtime Error
0
0
40
#coding:utf-8 x=input() x=x**3 print(x)
Traceback (most recent call last): File "/tmp/tmp56nzi9b9/tmpl4jngl39.py", line 2, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s646893211
p02388
u527848444
1424393202
Python
Python3
py
Runtime Error
0
0
37
x = int(input()) print(x * x * x)
File "/tmp/tmplumyfr7p/tmpuz68j3hq.py", line 2 print(x * x * x) IndentationError: unexpected indent
s085111103
p02388
u527848444
1424393228
Python
Python3
py
Runtime Error
0
0
33
x = int(input()) print(x*x*x)
File "/tmp/tmpsd5ckwkq/tmpao1ch4kt.py", line 2 print(x*x*x) IndentationError: unexpected indent
s957795963
p02388
u564075939
1424427329
Python
Python3
py
Runtime Error
0
0
26
x=int(input())print(x*x*x)
File "/tmp/tmp_n3s6tpx/tmpuwa96ams.py", line 1 x=int(input())print(x*x*x) ^^^^^ SyntaxError: invalid syntax
s810257670
p02388
u742797815
1424697239
Python
Python3
py
Runtime Error
0
0
25
x = input() print(x ** 3)
Traceback (most recent call last): File "/tmp/tmp0qwv1pxw/tmp08dvbj3p.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s878806780
p02388
u088816384
1424946924
Python
Python3
py
Runtime Error
0
0
37
value = raw_input() print("value**3")
Traceback (most recent call last): File "/tmp/tmpqvozzvra/tmpix_k8zf4.py", line 1, in <module> value = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s500698169
p02388
u088816384
1424947540
Python
Python3
py
Runtime Error
0
0
49
value = input() answer = value**3 print("answer")
Traceback (most recent call last): File "/tmp/tmpu3_shqew/tmpgonz2vek.py", line 1, in <module> value = input() ^^^^^^^ EOFError: EOF when reading a line
s937934048
p02388
u088816384
1424952951
Python
Python3
py
Runtime Error
0
0
62
value = input() answer = value * value * value print("answer")
Traceback (most recent call last): File "/tmp/tmpz_5843_c/tmphhl7t3zq.py", line 1, in <module> value = input() ^^^^^^^ EOFError: EOF when reading a line
s032491963
p02388
u088816384
1424953145
Python
Python3
py
Runtime Error
0
0
33
value = input() print(value ** 3)
Traceback (most recent call last): File "/tmp/tmp1bfa4vuj/tmp7ol6rkq2.py", line 1, in <module> value = input() ^^^^^^^ EOFError: EOF when reading a line
s418026941
p02388
u446252583
1429069902
Python
Python
py
Runtime Error
0
0
42
White True: x = input() print x**3
File "/tmp/tmpoac7lkwr/tmpktwfmdcc.py", line 1 White True: ^^^^ SyntaxError: invalid syntax
s840452179
p02388
u446252583
1429069959
Python
Python
py
Runtime Error
0
0
42
white True: x = input() print x**3
File "/tmp/tmpqfj3owql/tmpve1rvsri.py", line 1 white True: ^^^^ SyntaxError: invalid syntax
s238490525
p02388
u140201022
1430642748
Python
Python
py
Runtime Error
0
0
25
print int(raw_input())**3
File "/tmp/tmp9zxl_fgg/tmpaefsi4vw.py", line 1 print int(raw_input())**3 ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s772277765
p02388
u304186356
1431855811
Python
Python
py
Runtime Error
0
0
32
i=gets i=i.to_i print i*i*i,"\n"
File "/tmp/tmpq1vmsxap/tmpr5a6d7_z.py", line 3 print i*i*i,"\n" ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s855560496
p02388
u506372503
1431931856
Python
Python3
py
Runtime Error
0
0
24
x = input() print(x*x*x)
Traceback (most recent call last): File "/tmp/tmplpscgl11/tmpv2fmk2rn.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s478912320
p02388
u436720733
1432106880
Python
Python3
py
Runtime Error
0
0
36
a = input() int (a) print("{}".a**3)
Traceback (most recent call last): File "/tmp/tmp8v2oojm2/tmpuo2bzfgj.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s597770848
p02388
u784443002
1433305442
Python
Python
py
Runtime Error
0
0
166
process.stdin.resume(); process.stdin.setEncoding('utf8'); process.stdin.on('data',function(chunk){ var a = parseInt(chunk.trim(),10); console.log(Math.pow(a,3)); });
File "/tmp/tmpviuby2dw/tmpdy5_50tm.py", line 4 var a = parseInt(chunk.trim(),10); ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s157173050
p02388
u447423362
1433804274
Python
Python
py
Runtime Error
0
0
51
x = int(raw_input("Enter number:")) print )int(x**3
File "/tmp/tmp4r1rda92/tmpiky2qkmj.py", line 2 print )int(x**3 ^ SyntaxError: unmatched ')'
s525360752
p02388
u447423362
1433804319
Python
Python
py
Runtime Error
0
0
51
x = int(raw_input("Enter number:")) print )int(x**3
File "/tmp/tmppbdd_z95/tmp6c6wrzcy.py", line 2 print )int(x**3 ^ SyntaxError: unmatched ')'
s867738191
p02388
u447423362
1433804421
Python
Python3
py
Runtime Error
0
0
51
x = int(raw_input("Enter number:")) print int(x**3)
File "/tmp/tmpifwnvi0a/tmpyxx89etn.py", line 2 print int(x**3) ^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s945707749
p02388
u464218592
1434181720
Python
Python
py
Runtime Error
0
0
26
x = raw_input() print x**3
File "/tmp/tmpffzzesit/tmpj1wl1f9c.py", line 2 print x**3 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s518403513
p02388
u172616925
1434623369
Python
Python
py
Runtime Error
0
0
51
x = raw.input('What\'s the number??') print "x*x*x"
File "/tmp/tmpqyep_f6b/tmpmzxfn04v.py", line 2 print "x*x*x" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s031788549
p02388
u827214117
1435753222
Python
Python
py
Runtime Error
0
0
33
i = input_raw() print int(i) ** 3
File "/tmp/tmp6d2x3001/tmpj8japr27.py", line 2 print int(i) ** 3 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s672424794
p02388
u827214117
1435753306
Python
Python
py
Runtime Error
0
0
48
whit True: i = raw_input() print int(i) ** 3
File "/tmp/tmp90ugnkgn/tmphia0_b30.py", line 1 whit True: ^^^^ SyntaxError: invalid syntax
s423177327
p02388
u827214117
1435753432
Python
Python
py
Runtime Error
0
0
33
i = input_raw() print int(i) ** 3
File "/tmp/tmpcvkxo5xe/tmpaixscn0j.py", line 2 print int(i) ** 3 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s344258282
p02388
u827214117
1435753958
Python
Python
py
Runtime Error
0
0
33
i = input_raw() print int(i) ** 3
File "/tmp/tmp37nipoi1/tmp8ofkfmzx.py", line 2 print int(i) ** 3 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s921887699
p02388
u614711522
1436144296
Python
Python3
py
Runtime Error
0
0
12
print( x**3)
Traceback (most recent call last): File "/tmp/tmpvabr5np7/tmpr7t9sp18.py", line 1, in <module> print( x**3) ^ NameError: name 'x' is not defined
s940741638
p02388
u614711522
1436144442
Python
Python3
py
Runtime Error
0
0
14
print( x ** 3)
Traceback (most recent call last): File "/tmp/tmp61ne0pr3/tmps0v05bdw.py", line 1, in <module> print( x ** 3) ^ NameError: name 'x' is not defined
s965299286
p02388
u686134343
1436144546
Python
Python
py
Runtime Error
0
0
12
print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpbq7fzfun/tmpc0a4h1wv.py", line 1, in <module> print(x*x*x) ^ NameError: name 'x' is not defined
s616604690
p02388
u686134343
1436144637
Python
Python3
py
Runtime Error
0
0
22
var x = x print(x*x*x)
File "/tmp/tmp2es_udpa/tmpcfgnhs7e.py", line 1 var x = x print(x*x*x) ^ SyntaxError: invalid syntax
s051848459
p02388
u527848444
1436144676
Python
Python3
py
Runtime Error
0
0
23
print(int(input())***3)
File "/tmp/tmpc4uw0rox/tmprzl2u01q.py", line 1 print(int(input())***3) ^ SyntaxError: invalid syntax
s076667232
p02388
u686134343
1436144733
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmpddt_ccf5/tmpj3zd4p7w.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s342508298
p02388
u978086225
1436144774
Python
Python3
py
Runtime Error
0
0
17
x = x*** print(x)
File "/tmp/tmpoeywkib5/tmp7b_ks7da.py", line 1 x = x*** ^ SyntaxError: invalid syntax
s988040938
p02388
u686134343
1436144778
Python
Python3
py
Runtime Error
0
0
13
orint(x ** 3)
Traceback (most recent call last): File "/tmp/tmp077dw4p0/tmp9nesz3lf.py", line 1, in <module> orint(x ** 3) ^^^^^ NameError: name 'orint' is not defined. Did you mean: 'print'?
s871780450
p02388
u686134343
1436144836
Python
Python3
py
Runtime Error
0
0
14
print( x ** 3)
Traceback (most recent call last): File "/tmp/tmpwhy2jz4b/tmpeuxjzn7h.py", line 1, in <module> print( x ** 3) ^ NameError: name 'x' is not defined
s413430224
p02388
u614711522
1436144879
Python
Python3
py
Runtime Error
0
0
22
input() print( x ** 3)
Traceback (most recent call last): File "/tmp/tmpyl_iphhp/tmpxl4gg7p1.py", line 1, in <module> input() EOFError: EOF when reading a line
s842106379
p02388
u614711522
1436144949
Python
Python3
py
Runtime Error
0
0
26
x = input() print( x ** 3)
Traceback (most recent call last): File "/tmp/tmpx4vaxsh8/tmpqrypxczl.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s130224565
p02388
u306530296
1436145138
Python
Python3
py
Runtime Error
0
0
29
x =input(input()) print(x**3)
Traceback (most recent call last): File "/tmp/tmpxs0wpjys/tmp32fh_hp2.py", line 1, in <module> x =input(input()) ^^^^^^^ EOFError: EOF when reading a line
s833924769
p02388
u306530296
1436145195
Python
Python3
py
Runtime Error
0
0
30
x =input(input()) print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpvwnauafy/tmpciokqbir.py", line 1, in <module> x =input(input()) ^^^^^^^ EOFError: EOF when reading a line
s402213399
p02388
u306530296
1436145774
Python
Python3
py
Runtime Error
0
0
81
nums = input().split() a = int(nums[0]) b = int(nums[1]) print(a * b,(a + b) * 2)
Traceback (most recent call last): File "/tmp/tmpfs63gh1m/tmpmcrms_qv.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s568835082
p02388
u306530296
1436145817
Python
Python3
py
Runtime Error
0
0
81
nums = input().split() a = int(nums[0]) b = int(nums[1]) print(a * b,(a + b) * 2)
Traceback (most recent call last): File "/tmp/tmpev0m6wk3/tmp4wrhhud7.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s989073941
p02388
u403273083
1436147456
Python
Python3
py
Runtime Error
0
0
74
nums = input()split() a = int(nums[0]) b = int(nums[1]) print(a*b,(a+b)*2)
File "/tmp/tmpfkugnk4_/tmp1unqq9h3.py", line 1 nums = input()split() ^^^^^ SyntaxError: invalid syntax
s116397175
p02388
u605525736
1436149997
Python
Python3
py
Runtime Error
0
0
6
x ** 3
Traceback (most recent call last): File "/tmp/tmpa6p6dmg6/tmp_uhe5rol.py", line 1, in <module> x ** 3 ^ NameError: name 'x' is not defined
s210318496
p02388
u605525736
1436151025
Python
Python3
py
Runtime Error
0
0
12
x = 3 x ** 3
File "/tmp/tmp46qj35ft/tmpqk7jfks7.py", line 1 x = 3 x ** 3 ^ SyntaxError: invalid syntax
s296976039
p02388
u605525736
1436151296
Python
Python3
py
Runtime Error
0
0
47
nums = input().split() x = int(nums[3]) x ** 3
File "/tmp/tmp6uzwbmfk/tmplbse6so6.py", line 3 x ** 3 IndentationError: unexpected indent
s556537768
p02388
u484576700
1436286413
Python
Python
py
Runtime Error
0
0
30
x = raw_input() print(x ** 3)
File "/tmp/tmpekuvwg5z/tmp9l2ognlz.py", line 1 x = raw_input() IndentationError: unexpected indent
s756795703
p02388
u484576700
1436286703
Python
Python
py
Runtime Error
0
0
28
x = raw_input() print x ** 3
File "/tmp/tmpup9pwpsy/tmpg3775lhq.py", line 2 print x ** 3 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s598337674
p02388
u802705119
1436526504
Python
Python3
py
Runtime Error
0
0
25
x = input() print(x ** 3)
Traceback (most recent call last): File "/tmp/tmpfgz_1zky/tmpxcydip6_.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s820115592
p02388
u802705119
1436526570
Python
Python3
py
Runtime Error
0
0
31
x = input() x = x ** 3 print(x)
Traceback (most recent call last): File "/tmp/tmpx4pc2vbj/tmpau6prr48.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s672357794
p02388
u802705119
1436526768
Python
Python3
py
Runtime Error
0
0
34
x = input() x = x * x * x print(x)
Traceback (most recent call last): File "/tmp/tmpt_b276nu/tmp2lizgir8.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s447111665
p02388
u444407884
1437550421
Python
Python3
py
Runtime Error
0
0
48
import sys x = input() x = x * x * x print (x)
File "/tmp/tmp4qapjo27/tmpjtp5ejr5.py", line 4 print (x) ^ SyntaxError: invalid non-printable character U+3000
s834881270
p02388
u528991554
1438441548
Python
Python
py
Runtime Error
0
0
27
x = raw_input() print(x**3)
Traceback (most recent call last): File "/tmp/tmp9cvafnx8/tmpjhu532p9.py", line 1, in <module> x = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s500410260
p02388
u180914582
1438569456
Python
Python3
py
Runtime Error
0
0
35
x = int(input()) print(x * x * x *)
File "/tmp/tmpgb55n0z7/tmpzvlw4smd.py", line 2 print(x * x * x *) ^ SyntaxError: invalid syntax
s477831755
p02388
u676498528
1439168727
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmplp27h8fc/tmpl4q6k749.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s248779841
p02388
u938745275
1439310098
Python
Python
py
Runtime Error
0
0
40
import sys print (int(sys.argv[1]) ** 3)
Traceback (most recent call last): File "/tmp/tmpnpia2nt5/tmpjby6zrrb.py", line 2, in <module> print (int(sys.argv[1]) ** 3) ~~~~~~~~^^^ IndexError: list index out of range
s551641195
p02388
u938745275
1439310192
Python
Python
py
Runtime Error
0
0
39
import sys print(int(sys.argv[1]) ** 3)
Traceback (most recent call last): File "/tmp/tmp4zyk1s72/tmp8pt0556c.py", line 2, in <module> print(int(sys.argv[1]) ** 3) ~~~~~~~~^^^ IndexError: list index out of range
s465265296
p02388
u938745275
1439310365
Python
Python
py
Runtime Error
0
0
29
import sys print(sys.argv[1])
Traceback (most recent call last): File "/tmp/tmpltg74u9a/tmprkc6jtqj.py", line 2, in <module> print(sys.argv[1]) ~~~~~~~~^^^ IndexError: list index out of range
s950739327
p02388
u938745275
1439310406
Python
Python
py
Runtime Error
0
0
26
import sys t = sys.argv[1]
Traceback (most recent call last): File "/tmp/tmp7y7liivm/tmpn9v98ah4.py", line 2, in <module> t = sys.argv[1] ~~~~~~~~^^^ IndexError: list index out of range
s251168960
p02388
u722558010
1440575230
Python
Python3
py
Runtime Error
0
0
25
x=input() x=x**3 print(x)
Traceback (most recent call last): File "/tmp/tmp3stwb9n4/tmp46kyzvxg.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s979733514
p02388
u722558010
1440575867
Python
Python3
py
Runtime Error
0
0
31
x=int(input(x)) x=x**3 print(x)
Traceback (most recent call last): File "/tmp/tmpwg8biy32/tmpljqjako3.py", line 1, in <module> x=int(input(x)) ^ NameError: name 'x' is not defined
s058231719
p02388
u463783070
1440649800
Python
Python3
py
Runtime Error
0
0
12
return x * 3
File "/tmp/tmp5xckatt5/tmpbfi9f3c6.py", line 1 return x * 3 ^^^^^^^^^^^^ SyntaxError: 'return' outside function
s283013998
p02388
u463783070
1440650218
Python
Python3
py
Runtime Error
0
0
25
a = input() return a ** 3
File "/tmp/tmp3om_xzph/tmp6yo04j1q.py", line 2 return a ** 3 ^^^^^^^^^^^^^ SyntaxError: 'return' outside function
s530426556
p02388
u463783070
1440650303
Python
Python3
py
Runtime Error
0
0
30
a = int(input()) return a ** 3
File "/tmp/tmpotn0w6jg/tmpkg_ip_ge.py", line 2 return a ** 3 ^^^^^^^^^^^^^ SyntaxError: 'return' outside function
s807788710
p02388
u463783070
1440650345
Python
Python3
py
Runtime Error
0
0
32
a = int(input()) return (a ** 3)
File "/tmp/tmp1aiymmxh/tmpe2289_2y.py", line 2 return (a ** 3) ^^^^^^^^^^^^^^^ SyntaxError: 'return' outside function
s109926532
p02388
u823513038
1441706558
Python
Python
py
Runtime Error
0
0
25
input a; print a * a * a;
File "/tmp/tmp3zlqcpea/tmpjr3zju8y.py", line 1 input a; ^ SyntaxError: invalid syntax
s589514956
p02388
u823513038
1441706590
Python
Python
py
Runtime Error
0
0
23
input a print a * a * a
File "/tmp/tmp49o5p78o/tmphrr4xkph.py", line 1 input a ^ SyntaxError: invalid syntax
s841153682
p02388
u823513038
1441706783
Python
Python
py
Runtime Error
0
0
31
input a print "%d", (a * a * a)
File "/tmp/tmp1mt5ivi0/tmp6exxx3tg.py", line 1 input a ^ SyntaxError: invalid syntax
s956586034
p02388
u823513038
1441706827
Python
Python
py
Runtime Error
0
0
32
input a print "%d" % (a * a * a)
File "/tmp/tmpokp6blik/tmpxrc33x6g.py", line 1 input a ^ SyntaxError: invalid syntax
s936322226
p02388
u823513038
1441706917
Python
Python
py
Runtime Error
0
0
39
a = raw_input() print "%d"% (a * a * a)
File "/tmp/tmp6ukelssz/tmpa4jfqa3e.py", line 2 print "%d"% (a * a * a) ^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s274994447
p02388
u823513038
1441706949
Python
Python
py
Runtime Error
0
0
33
a = raw_input() print (a * a * a)
Traceback (most recent call last): File "/tmp/tmp10a4d5dw/tmp99e577zg.py", line 1, in <module> a = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s651401910
p02388
u389610071
1442036920
Python
Python3
py
Runtime Error
0
0
27
int(input(x)) print(x ** 3)
Traceback (most recent call last): File "/tmp/tmpcioc675n/tmpnqjsjkx3.py", line 1, in <module> int(input(x)) ^ NameError: name 'x' is not defined
s575516666
p02388
u389610071
1442036946
Python
Python3
py
Runtime Error
0
0
15
input(x) x ** 3
Traceback (most recent call last): File "/tmp/tmpsf5_k6x5/tmpaga0756y.py", line 1, in <module> input(x) ^ NameError: name 'x' is not defined
s562100207
p02388
u408701661
1442198141
Python
Python
py
Runtime Error
0
0
47
input = raw_input() print input * input * input
File "/tmp/tmp01x_8mxt/tmp86rtd_el.py", line 2 print input * input * input ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s432002632
p02388
u729824721
1442198513
Python
Python
py
Runtime Error
0
0
50
import sys x = sys.argv[1] x3 = x ** 3 print x3
File "/tmp/tmppfwlcwl7/tmpiph_6tjj.py", line 7 print x3 ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s144555451
p02388
u894381890
1442198516
Python
Python
py
Runtime Error
0
0
53
import sys x = sys.argy[1] x3 = x * x * x print x3
File "/tmp/tmp7a57hql1/tmpsk6lpfro.py", line 7 print x3 ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s874780806
p02388
u386372280
1442198627
Python
Python
py
Runtime Error
0
0
24
x = sys.stdin print x**3
File "/tmp/tmpjruwh7m2/tmpgap4zfsv.py", line 2 print x**3 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?