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
s765475345
p02388
u957680575
1492184066
Python
Python3
py
Runtime Error
0
0
29
x = input() y = x**3 print(y)
Traceback (most recent call last): File "/tmp/tmp0ltwlkou/tmpln8q4djh.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s020633775
p02388
u244790947
1492503714
Python
Python3
py
Runtime Error
0
0
41
import sys; x = sys.argv[1]; print(x^2);
Traceback (most recent call last): File "/tmp/tmpw9kfq4_w/tmpnjzqh0su.py", line 3, in <module> x = sys.argv[1]; ~~~~~~~~^^^ IndexError: list index out of range
s770228853
p02388
u244790947
1492503741
Python
Python3
py
Runtime Error
0
0
41
import sys; x = sys.argv[1]; print(x*x);
Traceback (most recent call last): File "/tmp/tmphpi2cvo9/tmpipmex0s8.py", line 3, in <module> x = sys.argv[1]; ~~~~~~~~^^^ IndexError: list index out of range
s850614560
p02388
u244790947
1492503773
Python
Python3
py
Runtime Error
0
0
41
import sys; x = sys.argv[1]; print(x^3);
Traceback (most recent call last): File "/tmp/tmpazwgfrl_/tmpgce2pag4.py", line 3, in <module> x = sys.argv[1]; ~~~~~~~~^^^ IndexError: list index out of range
s751055267
p02388
u244790947
1492503876
Python
Python3
py
Runtime Error
0
0
42
import sys; x = sys.argv[1]; print(x**3);
Traceback (most recent call last): File "/tmp/tmp8cv8bym8/tmp92jlieb7.py", line 3, in <module> x = sys.argv[1]; ~~~~~~~~^^^ IndexError: list index out of range
s063076271
p02388
u244790947
1492503904
Python
Python3
py
Runtime Error
0
0
39
import sys x = sys.argv[1] print(x**3)
Traceback (most recent call last): File "/tmp/tmp0z_wjje9/tmp9vcgzyha.py", line 3, in <module> x = sys.argv[1] ~~~~~~~~^^^ IndexError: list index out of range
s512119263
p02388
u244790947
1492503975
Python
Python3
py
Runtime Error
0
0
39
import sys x = sys.argv[1] print(x**3)
Traceback (most recent call last): File "/tmp/tmpra6tszf9/tmppkzq4fjp.py", line 3, in <module> x = sys.argv[1] ~~~~~~~~^^^ IndexError: list index out of range
s562431778
p02388
u244790947
1492504008
Python
Python3
py
Runtime Error
0
0
40
import sys; x = sys.argv[1] print(x**3)
Traceback (most recent call last): File "/tmp/tmpq3y8_5hw/tmplymu8iym.py", line 3, in <module> x = sys.argv[1] ~~~~~~~~^^^ IndexError: list index out of range
s087195521
p02388
u628279257
1492591846
Python
Python3
py
Runtime Error
0
0
25
x=input() x=x**3 print(x)
Traceback (most recent call last): File "/tmp/tmpay3rnazx/tmp8bfv1gp_.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s998863108
p02388
u244790947
1492666721
Python
Python3
py
Runtime Error
0
0
39
import sys x = sys.argv[2] print(x**3)
Traceback (most recent call last): File "/tmp/tmpn9bnvtfo/tmpwrani8lm.py", line 3, in <module> x = sys.argv[2] ~~~~~~~~^^^ IndexError: list index out of range
s283724896
p02388
u244790947
1492667100
Python
Python3
py
Runtime Error
0
0
39
import sys x = sys.argv[2] print(x**3)
Traceback (most recent call last): File "/tmp/tmp48j0r6ob/tmp4amoejjs.py", line 3, in <module> x = sys.argv[2] ~~~~~~~~^^^ IndexError: list index out of range
s668488583
p02388
u244790947
1492667378
Python
Python3
py
Runtime Error
0
0
39
import sys x = sys.argv[1] print(x**3)
Traceback (most recent call last): File "/tmp/tmpgfxffwd0/tmpardfnj2q.py", line 3, in <module> x = sys.argv[1] ~~~~~~~~^^^ IndexError: list index out of range
s998175586
p02388
u244790947
1492667720
Python
Python3
py
Runtime Error
0
0
56
import sys argc = sys.argv print(str(int(argc[1])**3))
Traceback (most recent call last): File "/tmp/tmphmjvsi70/tmpou0s86qb.py", line 5, in <module> print(str(int(argc[1])**3)) ~~~~^^^ IndexError: list index out of range
s191084901
p02388
u244790947
1492668679
Python
Python3
py
Runtime Error
0
0
74
import sys if __name__ == "__main__": print(str(int(sys.argv[1])**3))
Traceback (most recent call last): File "/tmp/tmppw16v40j/tmpxzdj1qey.py", line 4, in <module> print(str(int(sys.argv[1])**3)) ~~~~~~~~^^^ IndexError: list index out of range
s116987010
p02388
u350064373
1492677552
Python
Python3
py
Runtime Error
0
0
56
print(int(input(x???????????\?????????????????????))**3)
File "/tmp/tmpm5mjni4x/tmp4n6s4_9l.py", line 1 print(int(input(x???????????\?????????????????????))**3) ^ SyntaxError: invalid syntax
s196884260
p02388
u503144441
1492757124
Python
Python
py
Runtime Error
0
0
54
def jo(x): if 1 <= x <= 100:print(x**3) jo(x)
Traceback (most recent call last): File "/tmp/tmplf3x_d75/tmp68vh4z5e.py", line 4, in <module> jo(x) ^ NameError: name 'x' is not defined
s516533524
p02388
u503144441
1492757181
Python
Python3
py
Runtime Error
0
0
54
def jo(x): if 1 <= x <= 100:print(x**3) jo(x)
Traceback (most recent call last): File "/tmp/tmpnwlo2nx7/tmp68960t55.py", line 4, in <module> jo(x) ^ NameError: name 'x' is not defined
s697498895
p02388
u772010071
1493110042
Python
Python3
py
Runtime Error
0
0
22
x = input() print(x^3)
Traceback (most recent call last): File "/tmp/tmprrx4nc2t/tmpu9j3gb4e.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s273572993
p02388
u772010071
1493110054
Python
Python3
py
Runtime Error
0
0
22
x = input() print(x^3)
Traceback (most recent call last): File "/tmp/tmpvbkohnig/tmp66ite1oh.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s629920029
p02388
u772010071
1493110071
Python
Python3
py
Runtime Error
0
0
24
x = input() print(x*x*x)
Traceback (most recent call last): File "/tmp/tmp_ckqdehg/tmp9dp9svhn.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s893589558
p02388
u645985665
1493542780
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmpmnqeeq4k/tmpp5fds2xg.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s879859278
p02388
u645985665
1493542846
Python
Python3
py
Runtime Error
0
0
12
print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpc11xgqei/tmp1flw6y03.py", line 1, in <module> print(x*x*x) ^ NameError: name 'x' is not defined
s985531885
p02388
u156182935
1493618291
Python
Python3
py
Runtime Error
0
0
46
input_line1 = raw_input() print(input_line1^3)
Traceback (most recent call last): File "/tmp/tmpc04oa676/tmpb42i0xqw.py", line 1, in <module> input_line1 = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s208909798
p02388
u040556632
1493640086
Python
Python3
py
Runtime Error
0
0
34
a =int(intput()) a = a**3 print(a)
Traceback (most recent call last): File "/tmp/tmpndg1e76g/tmpgoaghiza.py", line 1, in <module> a =int(intput()) ^^^^^^ NameError: name 'intput' is not defined. Did you mean: 'input'?
s905486108
p02388
u040556632
1493640190
Python
Python3
py
Runtime Error
0
0
34
a = int(input()) b = b**3 print(b)
Traceback (most recent call last): File "/tmp/tmpvryce48k/tmps4smz7z9.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s590972500
p02388
u344402305
1493692338
Python
Python3
py
Runtime Error
0
0
16
print(x * x * x)
Traceback (most recent call last): File "/tmp/tmpuknt8onl/tmpt5jqy8eh.py", line 1, in <module> print(x * x * x) ^ NameError: name 'x' is not defined
s901839625
p02388
u344402305
1493692657
Python
Python3
py
Runtime Error
0
0
28
x = input() print(x * x * x)
Traceback (most recent call last): File "/tmp/tmp85_0y7nt/tmpe91u8unk.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s181490835
p02388
u213265973
1493710403
Python
Python3
py
Runtime Error
0
0
13
print(x ** 3)
Traceback (most recent call last): File "/tmp/tmpziffhqbi/tmp2lraj0du.py", line 1, in <module> print(x ** 3) ^ NameError: name 'x' is not defined
s395175766
p02388
u213265973
1493710421
Python
Python3
py
Runtime Error
0
0
13
print(x ** 3)
Traceback (most recent call last): File "/tmp/tmp9xndqdek/tmpvflspp92.py", line 1, in <module> print(x ** 3) ^ NameError: name 'x' is not defined
s689250370
p02388
u648117624
1493877595
Python
Python3
py
Runtime Error
0
0
30
x = input() y = x **3 print(y)
Traceback (most recent call last): File "/tmp/tmp69fob94i/tmpkzj0sbwo.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s397314139
p02388
u648117624
1493877745
Python
Python3
py
Runtime Error
0
0
34
x = input() y = x**3 print(int(y))
Traceback (most recent call last): File "/tmp/tmp9nmhdy7_/tmplynjznrq.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s967701554
p02388
u648117624
1493877938
Python
Python3
py
Runtime Error
0
0
22
print(int(input()**3))
Traceback (most recent call last): File "/tmp/tmpp9d85q0y/tmptm9uydmg.py", line 1, in <module> print(int(input()**3)) ^^^^^^^ EOFError: EOF when reading a line
s868631078
p02388
u648117624
1493878008
Python
Python3
py
Runtime Error
0
0
22
print(int(input()**3))
Traceback (most recent call last): File "/tmp/tmpenkavylh/tmp26bbwic3.py", line 1, in <module> print(int(input()**3)) ^^^^^^^ EOFError: EOF when reading a line
s222749102
p02388
u648117624
1493878095
Python
Python3
py
Runtime Error
0
0
23
print(int(input(x)**3))
Traceback (most recent call last): File "/tmp/tmpvy2uj7zh/tmp42pptxoc.py", line 1, in <module> print(int(input(x)**3)) ^ NameError: name 'x' is not defined
s936189244
p02388
u648117624
1493881188
Python
Python3
py
Runtime Error
0
0
16
print(int(x**3))
Traceback (most recent call last): File "/tmp/tmp20yx0qnj/tmp2a9u2ry7.py", line 1, in <module> print(int(x**3)) ^ NameError: name 'x' is not defined
s220702371
p02388
u286033857
1493898723
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmp5s7fke_z/tmplq3iq84t.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s334674268
p02388
u286033857
1493898778
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmpte7m5mxi/tmp_x2fcryk.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s150995361
p02388
u286033857
1493898826
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmpt4e5r4or/tmpc6z0k1rh.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s798682306
p02388
u648117624
1493980882
Python
Python3
py
Runtime Error
0
0
35
x = input() y = x**3 print int(y)
File "/tmp/tmp_5fvqv9t/tmp1eupayus.py", line 5 print int(y) ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s880030758
p02388
u156215655
1493998353
Python
Python3
py
Runtime Error
0
0
51
a,b = map(int, input().split()) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmpm20tk74e/tmp0g8iu9ws.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s093740082
p02388
u156215655
1493998433
Python
Python3
py
Runtime Error
0
0
52
a, b = map(int, input().split()) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmpji6ss6z3/tmp5c5thza9.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s332634458
p02388
u650790815
1494244147
Python
Python3
py
Runtime Error
0
0
6
x ** 3
Traceback (most recent call last): File "/tmp/tmptch3yyz_/tmphk1db76s.py", line 1, in <module> x ** 3 ^ NameError: name 'x' is not defined
s922971218
p02388
u767850279
1494750738
Python
Python3
py
Runtime Error
0
0
60
# coding: utf-8 ''' x ??? 3 ??? ''' aa = input() print aa**3
File "/tmp/tmpr_7wi6lv/tmpcbhtm3yf.py", line 6 print aa**3 ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s487946581
p02388
u256678932
1495073466
Python
Python3
py
Runtime Error
0
0
33
n = raw_input() print(int(n)**3)
Traceback (most recent call last): File "/tmp/tmp4tow58qz/tmp7is78umu.py", line 1, in <module> n = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s483180050
p02388
u686209982
1495080224
Python
Python3
py
Runtime Error
0
0
26
x = input() print(x ** 3)
Traceback (most recent call last): File "/tmp/tmp95jr822x/tmp01f9wrq4.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s671922083
p02388
u686209982
1495080409
Python
Python3
py
Runtime Error
0
0
24
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpqwzxvk0i/tmp2ib_yuc0.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s926211658
p02388
u603049633
1495499625
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmp2u8ps22o/tmpqa882j74.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s673032007
p02388
u714141025
1495671088
Python
Python3
py
Runtime Error
0
0
24
s=input() print(s*s*s)
Traceback (most recent call last): File "/tmp/tmpa63y68yh/tmp5rnr9im6.py", line 2, in <module> s=input() ^^^^^^^ EOFError: EOF when reading a line
s468749161
p02388
u922489088
1495788260
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmphn_iupxb/tmpq7178y4_.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s239872774
p02388
u922489088
1495788287
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmpj1rkcpjg/tmpq2xrtl8s.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s117003837
p02388
u922489088
1495788472
Python
Python3
py
Runtime Error
0
0
21
x=impot() print(x**3)
Traceback (most recent call last): File "/tmp/tmpo_0sa748/tmpeggrcvbg.py", line 1, in <module> x=impot() ^^^^^ NameError: name 'impot' is not defined. Did you mean: 'input'?
s064706888
p02388
u922489088
1495788504
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpconef3lq/tmp816ypq16.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s130581616
p02388
u024384030
1495815767
Python
Python3
py
Runtime Error
0
0
28
x = input() print(x * x * x)
Traceback (most recent call last): File "/tmp/tmp4gj2lqmp/tmpmad62a0c.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s962166869
p02388
u999594662
1496061735
Python
Python3
py
Runtime Error
0
0
29
x = 100 print(x ** 3 + '?\n')
Traceback (most recent call last): File "/tmp/tmp6gq9j4t9/tmpu57c5ln4.py", line 2, in <module> print(x ** 3 + '?\n') ~~~~~~~^~~~~~~ TypeError: unsupported operand type(s) for +: 'int' and 'str'
s755177737
p02388
u999594662
1496062406
Python
Python3
py
Runtime Error
0
0
82
def main(): x = 99 print(x ** 3+'?\n') if __name__ == "__main" main()
File "/tmp/tmpxw_wwo2j/tmphexib3t9.py", line 5 if __name__ == "__main" ^ SyntaxError: expected ':'
s811250235
p02388
u999594662
1496062527
Python
Python3
py
Runtime Error
0
0
80
def main(): int x = 99 print(x ** 3) if __name__ == "__main" main()
File "/tmp/tmpbdj1lpcy/tmpdn6tkh13.py", line 2 int x = 99 ^ SyntaxError: invalid syntax
s094556321
p02388
u999594662
1496063076
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpvzy8yuq_/tmpen4b0ij6.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s907248823
p02388
u167404994
1496141349
Python
Python3
py
Runtime Error
0
0
26
print(int(raw_input())**3)
Traceback (most recent call last): File "/tmp/tmp0w8lp8oo/tmpux1ykjrt.py", line 1, in <module> print(int(raw_input())**3) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s123196232
p02388
u450231931
1496145551
Python
Python3
py
Runtime Error
0
0
24
x = imput() print(x*x*x)
Traceback (most recent call last): File "/tmp/tmp3s2cjok5/tmpi8345tk1.py", line 1, in <module> x = imput() ^^^^^ NameError: name 'imput' is not defined. Did you mean: 'input'?
s971088868
p02388
u450231931
1496145604
Python
Python3
py
Runtime Error
0
0
24
x = imput() print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpt69c81yc/tmp_9lyzh3m.py", line 1, in <module> x = imput() ^^^^^ NameError: name 'imput' is not defined. Did you mean: 'input'?
s462653541
p02388
u450231931
1496145821
Python
Python3
py
Runtime Error
0
0
22
x=input() print(x*x*x)
Traceback (most recent call last): File "/tmp/tmpoh725be8/tmp5d5orqzx.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s359239734
p02388
u450231931
1496145908
Python
Python
py
Runtime Error
0
0
24
x=input() print(x*x*x\n)
File "/tmp/tmpidwi2z9g/tmp9ezo_d9w.py", line 2 print(x*x*x\n) ^ SyntaxError: unexpected character after line continuation character
s976420908
p02388
u450231931
1496146242
Python
Python3
py
Runtime Error
0
0
26
x=int(imput()) print(x**3)
Traceback (most recent call last): File "/tmp/tmpn3e6oyyl/tmp2uifadcm.py", line 1, in <module> x=int(imput()) ^^^^^ NameError: name 'imput' is not defined. Did you mean: 'input'?
s967860241
p02388
u156624982
1496202635
Python
Python
py
Runtime Error
0
0
30
num = raw_input() print num**3
File "/tmp/tmp29kaswxq/tmpbnzz3glf.py", line 2 print num**3 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s385101049
p02388
u156624982
1496202740
Python
Python
py
Runtime Error
0
0
30
num = raw_input() print num**3
File "/tmp/tmp28iz41w4/tmppmi_pkak.py", line 2 print num**3 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s216798681
p02388
u431149308
1496494529
Python
Python
py
Runtime Error
0
0
3
x^3
Traceback (most recent call last): File "/tmp/tmprho9lljm/tmpoaqixqxr.py", line 1, in <module> x^3 ^ NameError: name 'x' is not defined
s412584778
p02388
u025362139
1496650197
Python
Python
py
Runtime Error
0
0
16
int(input(x))**3
Traceback (most recent call last): File "/tmp/tmpfcnp14o9/tmpx3s57i_w.py", line 1, in <module> int(input(x))**3 ^ NameError: name 'x' is not defined
s866464112
p02388
u025362139
1496650444
Python
Python3
py
Runtime Error
0
0
32
cub = int(input(x))**3 print cub
File "/tmp/tmp2n2bf4nx/tmpcvo1axlg.py", line 2 print cub ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s817685947
p02388
u025362139
1496650457
Python
Python
py
Runtime Error
0
0
32
cub = int(input(x))**3 print cub
File "/tmp/tmp7rijg470/tmpdiorguu3.py", line 2 print cub ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s262364892
p02388
u025362139
1496650786
Python
Python
py
Runtime Error
0
0
45
a = input('x') b = int('a') c = b**3 print(c)
Traceback (most recent call last): File "/tmp/tmpauyn58dm/tmpmk6xpwz9.py", line 1, in <module> a = input('x') ^^^^^^^^^^ EOFError: EOF when reading a line
x
s474041826
p02388
u025362139
1496650815
Python
Python
py
Runtime Error
0
0
44
a = input('x') b = int('a') c = b**3 print c
File "/tmp/tmpwwl9ewy9/tmpzi105w9x.py", line 4 print c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s645960716
p02388
u025362139
1496650897
Python
Python
py
Runtime Error
0
0
44
a = input('>') b = int('a') c = b**3 print c
File "/tmp/tmpm9x398cx/tmpkji3fsa4.py", line 4 print c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s359717869
p02388
u025362139
1496650950
Python
Python
py
Runtime Error
0
0
41
a = input() b = int('a') c = b**3 print c
File "/tmp/tmpgu7pg4v8/tmp2af2rko0.py", line 4 print c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s900482258
p02388
u216229195
1496755521
Python
Python3
py
Runtime Error
0
0
31
x = raw_input() print(pow(x,3))
Traceback (most recent call last): File "/tmp/tmpqqtj__ee/tmp60jz5ze7.py", line 1, in <module> x = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s387558470
p02388
u216229195
1496755540
Python
Python3
py
Runtime Error
0
0
31
x = raw_input() print(pow(x,3))
Traceback (most recent call last): File "/tmp/tmpt6vaz352/tmpnkghqrv5.py", line 1, in <module> x = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s200433742
p02388
u675844759
1496795900
Python
Python3
py
Runtime Error
0
0
10
print(x^3)
Traceback (most recent call last): File "/tmp/tmp6vfbarzh/tmphd5avfw8.py", line 1, in <module> print(x^3) ^ NameError: name 'x' is not defined
s284421560
p02388
u675844759
1496795999
Python
Python3
py
Runtime Error
0
0
20
x=input() print(x^3)
Traceback (most recent call last): File "/tmp/tmpwjqb7nnj/tmpnq4rg_f9.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s432582768
p02388
u100370736
1496805914
Python
Python3
py
Runtime Error
0
0
21
a=input() print a*a*a
File "/tmp/tmp2wt30nxf/tmp7s6vmnqd.py", line 2 print a*a*a ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s282197164
p02388
u029473859
1496920823
Python
Python
py
Runtime Error
0
0
28
x = raw_input() print x ** 3
File "/tmp/tmpinkfovt4/tmph2map2j_.py", line 2 print x ** 3 ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s363752152
p02388
u029473859
1496923200
Python
Python3
py
Runtime Error
0
0
43
x = input() x_int = int(x) print x_int ** 3
File "/tmp/tmpmpzyvt1t/tmpb4b17wly.py", line 3 print x_int ** 3 ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s819968744
p02388
u423320231
1497087219
Python
Python
py
Runtime Error
0
0
21
x=input print(x*x*x)
Traceback (most recent call last): File "/tmp/tmp3odyexne/tmpr1up78sr.py", line 3, in <module> print(x*x*x) ~^~ TypeError: unsupported operand type(s) for *: 'builtin_function_or_method' and 'builtin_function_or_method'
s873309656
p02388
u239524997
1497161195
Python
Python
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmp79qc6dbn/tmp0c1eddjo.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s994138607
p02388
u431104056
1497359292
Python
Python3
py
Runtime Error
0
0
42
#!/usr/bin/python n = input() print(n**3)
Traceback (most recent call last): File "/tmp/tmpssuujatm/tmp3a2xdo5f.py", line 3, in <module> n = input() ^^^^^^^ EOFError: EOF when reading a line
s704060070
p02388
u431104056
1497359326
Python
Python3
py
Runtime Error
0
0
42
#!/usr/bin/python n = input() print(n**3)
Traceback (most recent call last): File "/tmp/tmpy4yqn60h/tmpwr43733p.py", line 3, in <module> n = input() ^^^^^^^ EOFError: EOF when reading a line
s767235504
p02388
u362440544
1497366442
Python
Python3
py
Runtime Error
0
0
36
x=int(input()) print (x*x*x)
File "/tmp/tmpbo0dj1pp/tmpw7uq3sbg.py", line 1 x=int(input()) IndentationError: unexpected indent
s305692128
p02388
u876774533
1497439593
Python
Python3
py
Runtime Error
0
0
26
X=input() Y=X*X*X print(Y)
Traceback (most recent call last): File "/tmp/tmpg98tjrml/tmpiqb8xxck.py", line 1, in <module> X=input() ^^^^^^^ EOFError: EOF when reading a line
s242829553
p02388
u876774533
1497439719
Python
Python3
py
Runtime Error
0
0
26
x=input() y=x*x*x print(y)
Traceback (most recent call last): File "/tmp/tmppetcehzb/tmpnu5tmre0.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s482625425
p02388
u658089986
1497505926
Python
Python3
py
Runtime Error
0
0
24
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpq0_ht_4p/tmpmiphoa6v.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s714035162
p02388
u721103753
1497505927
Python
Python3
py
Runtime Error
0
0
24
x = input() print(x**3)
Traceback (most recent call last): File "/tmp/tmpwgqlt1dn/tmpge1prsx0.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s849858999
p02388
u050103511
1497505953
Python
Python3
py
Runtime Error
0
0
13
print(x ** 3)
Traceback (most recent call last): File "/tmp/tmp51cspba9/tmpimapjkz7.py", line 1, in <module> print(x ** 3) ^ NameError: name 'x' is not defined
s323642169
p02388
u721103753
1497506005
Python
Python3
py
Runtime Error
0
0
13
print(x ** 3)
Traceback (most recent call last): File "/tmp/tmprphxe4ad/tmpuf1y1fuv.py", line 1, in <module> print(x ** 3) ^ NameError: name 'x' is not defined
s945038607
p02388
u333596716
1497506066
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
Traceback (most recent call last): File "/tmp/tmp2haz0xt9/tmpo999u5df.py", line 1, in <module> print(x**3) ^ NameError: name 'x' is not defined
s294562895
p02388
u831971779
1497506092
Python
Python3
py
Runtime Error
0
0
10
print(x*3)
Traceback (most recent call last): File "/tmp/tmpq_dmsc3l/tmpedwj0292.py", line 1, in <module> print(x*3) ^ NameError: name 'x' is not defined
s191298713
p02388
u698693989
1497506096
Python
Python3
py
Runtime Error
0
0
20
input(x) print(x**3)
Traceback (most recent call last): File "/tmp/tmppl3ctchc/tmps35hmucy.py", line 1, in <module> input(x) ^ NameError: name 'x' is not defined
s406804723
p02388
u410114382
1497506113
Python
Python3
py
Runtime Error
0
0
11
int('x')**3
Traceback (most recent call last): File "/tmp/tmp7x0xitqe/tmpri80v9uo.py", line 1, in <module> int('x')**3 ^^^^^^^^ ValueError: invalid literal for int() with base 10: 'x'
s616336728
p02388
u721103753
1497506122
Python
Python3
py
Runtime Error
0
0
25
x = input() print(x ** 3)
Traceback (most recent call last): File "/tmp/tmpo2j0pxy9/tmpbxn2zmqq.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s575182300
p02388
u050103511
1497506137
Python
Python3
py
Runtime Error
0
0
16
print(x * x * x)
Traceback (most recent call last): File "/tmp/tmpg2a8zdre/tmpmlymugtc.py", line 1, in <module> print(x * x * x) ^ NameError: name 'x' is not defined
s628048770
p02388
u410114382
1497506165
Python
Python3
py
Runtime Error
0
0
4
x**3
Traceback (most recent call last): File "/tmp/tmp2gajskxs/tmpr40f_aaw.py", line 1, in <module> x**3 ^ NameError: name 'x' is not defined
s077517540
p02388
u698693989
1497506171
Python
Python3
py
Runtime Error
0
0
24
x=input(int) print(x**3)
Traceback (most recent call last): File "/tmp/tmpw87cyf0u/tmp84l2pnse.py", line 1, in <module> x=input(int) ^^^^^^^^^^ EOFError: EOF when reading a line
<class 'int'>
s487116152
p02388
u486972540
1497506174
Python
Python3
py
Runtime Error
0
0
20
x = int(input) x**3
Traceback (most recent call last): File "/tmp/tmp707ep001/tmp20srrh00.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'