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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s916003727 | p02388 | u729824721 | 1442198650 | Python | Python | py | Runtime Error | 0 | 0 | 55 | import sys
x = sys.argv[1]
x3 = int(x) ** 3
print x3 | File "/tmp/tmphthw6tun/tmpi3oil9xy.py", line 7
print x3
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s481364831 | p02388 | u894381890 | 1442198655 | Python | Python | py | Runtime Error | 0 | 0 | 68 | import sys
x = sys.argv[1]
x3 = int(x) * int(x) * int(x)
print x3 | File "/tmp/tmpkcogi92k/tmpynbav35r.py", line 7
print x3
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s951517297 | p02388 | u729824721 | 1442198679 | Python | Python | py | Runtime Error | 0 | 0 | 55 | import sys
x = sys.argv[1]
x3 = int(x) ** 3
print x3 | File "/tmp/tmp151vmien/tmplf668gbj.py", line 7
print x3
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s342075232 | p02388 | u386372280 | 1442198721 | Python | Python | py | Runtime Error | 0 | 0 | 36 | import sys
x = sys.stdin
print x**3 | File "/tmp/tmp5a3cya90/tmp1h4d2kco.py", line 4
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s219941655 | p02388 | u969115822 | 1442225481 | Python | Python | py | Runtime Error | 0 | 0 | 64 |
def cub():
x = raw_input("Input number >")
return x ** 3 | File "/tmp/tmp_zqjwst3/tmpw27boe4g.py", line 4
return x ** 3
^
IndentationError: unindent does not match any outer indentation level
| |
s911364971 | p02388 | u313994256 | 1442237865 | Python | Python | py | Runtime Error | 0 | 0 | 42 | import sys
x = sys.stdin.read()
print x**3 | File "/tmp/tmpbgka328y/tmpdzrnbtwy.py", line 3
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s432104237 | p02388 | u463783070 | 1442392580 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 | Traceback (most recent call last):
File "/tmp/tmp___sr5kg/tmpjk8fono9.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s276162451 | p02388 | u463783070 | 1442392649 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmpeozrhrc0/tmpoky8hmrw.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s140354810 | p02388 | u463783070 | 1442392716 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x**3)\n | File "/tmp/tmpo0w3tx94/tmpwd14ko6q.py", line 1
print(x**3)\n
^
SyntaxError: unexpected character after line continuation character
| |
s249557878 | p02388 | u463783070 | 1442392814 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = (int())
print(x**3)\n | File "/tmp/tmpzfbgsrnh/tmpy03lrqi0.py", line 2
print(x**3)\n
^
SyntaxError: unexpected character after line continuation character
| |
s969008606 | p02388 | u572760146 | 1442632899 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print (x**3) | Traceback (most recent call last):
File "/tmp/tmpdfcncvch/tmpq02hknaz.py", line 1, in <module>
print (x**3)
^
NameError: name 'x' is not defined
| |
s553609367 | p02388 | u572760146 | 1442632971 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print (x**3) | Traceback (most recent call last):
File "/tmp/tmp8518l7tp/tmpej7_dwrn.py", line 1, in <module>
print (x**3)
^
NameError: name 'x' is not defined
| |
s027627992 | p02388 | u760641096 | 1442769122 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmprub65ews/tmpcir7nrrf.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s435899144 | p02388 | u760641096 | 1442769242 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp249at4cz/tmp81e7xnif.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s770893411 | p02388 | u760641096 | 1442769649 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = input()
print(int(x**3)) | Traceback (most recent call last):
File "/tmp/tmp35znfqn3/tmpuewjlkpq.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s723263433 | p02388 | u528773839 | 1444814308 | Python | Python | py | Runtime Error | 0 | 0 | 31 | import sys
print sys.argv[1]*3 | File "/tmp/tmpmb240c96/tmp6a0puevj.py", line 3
print sys.argv[1]*3
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s128211985 | p02388 | u528773839 | 1444814481 | Python | Python | py | Runtime Error | 0 | 0 | 92 | #!/usr/bin/python
import sys
fp = open(sys.argv[1],'rb')
for i in fp.readline:
print i*3 | File "/tmp/tmpb9hnibli/tmp5k3ik46a.py", line 5
print i*3
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s379982327 | p02388 | u089524441 | 1444921748 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x = input
print x*x*x | File "/tmp/tmp582128n2/tmp23nmgio3.py", line 2
print x*x*x
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s591937759 | p02388 | u139034459 | 1445705130 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = raw_input()
var = var^3
print var | File "/tmp/tmp7oadxv61/tmpwr53uy6q.py", line 7
print var
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s350555476 | p02388 | u139034459 | 1445705175 | Python | Python | py | Runtime Error | 0 | 0 | 93 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = raw_input()
var = var*var*var
print var | File "/tmp/tmpu7t8tmme/tmp3awywyog.py", line 7
print var
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s434230977 | p02388 | u139034459 | 1445705323 | Python | Python | py | Runtime Error | 0 | 0 | 93 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = raw_input()
sum = var*var*var
print sum | File "/tmp/tmpo6moot0d/tmputmj77xc.py", line 7
print sum
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s818173316 | p02388 | u619433397 | 1446137979 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpvrccmm0k/tmp8d_j9ek9.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s201988297 | p02388 | u823513038 | 1446369491 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a = int(raw_input())
print(a * a * a) | Traceback (most recent call last):
File "/tmp/tmpr371thbg/tmp1s2qq8kf.py", line 1, in <module>
a = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s330352146 | p02388 | u135307562 | 1446837274 | Python | Python | py | Runtime Error | 0 | 0 | 32 | x = raw_input()
x = x**3
print x | File "/tmp/tmpkexodmod/tmpdv3gwsya.py", line 3
print x
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s314271399 | p02388 | u529272062 | 1446958049 | Python | Python | py | Runtime Error | 0 | 0 | 25 | x=raw_input()
print x*x*x | File "/tmp/tmpatfemd4o/tmpcuxx3rli.py", line 2
print x*x*x
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s787060587 | p02388 | u529272062 | 1446958376 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x=raw_input()
print (x*x*x) | Traceback (most recent call last):
File "/tmp/tmpkexg04kf/tmp2k63vp89.py", line 1, in <module>
x=raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s825570374 | p02388 | u261533743 | 1447647110 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | import math
print math.pow(input(),3) | File "/tmp/tmpqyt4roay/tmpz4rzgh7m.py", line 3
print math.pow(input(),3)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s519236151 | p02388 | u261533743 | 1447647390 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | import math
print(math.pow(input(),3)) | Traceback (most recent call last):
File "/tmp/tmpvu_g_z0j/tmp1jze7lvc.py", line 3, in <module>
print(math.pow(input(),3))
^^^^^^^
EOFError: EOF when reading a line
| |
s127892703 | p02388 | u261533743 | 1447647473 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | import math
x = parseInt(input())
print(math.pow(x,3)) | Traceback (most recent call last):
File "/tmp/tmppn8utr3g/tmp3wnhdown.py", line 3, in <module>
x = parseInt(input())
^^^^^^^^
NameError: name 'parseInt' is not defined
| |
s475111100 | p02388 | u982632052 | 1448974571 | Python | Python | py | Runtime Error | 0 | 0 | 36 | x = raw_int(input('> '))
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpb1lnqdxp/tmp04wsf50u.py", line 1, in <module>
x = raw_int(input('> '))
^^^^^^^
NameError: name 'raw_int' is not defined
| |
s544165962 | p02388 | u840640840 | 1449114817 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | number = input()
print("%d",number**3) | Traceback (most recent call last):
File "/tmp/tmpxtx9ij0x/tmprohj4d3n.py", line 1, in <module>
number = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s781852413 | p02388 | u980683323 | 1449532550 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x=input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp4h0dc9s1/tmp8dtx0qu9.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s467636596 | p02388 | u980683323 | 1449532621 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | x=input()
print("{}" % (x**3)) | Traceback (most recent call last):
File "/tmp/tmp9q5xemjb/tmp6771z1uy.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s971079141 | p02388 | u297949443 | 1449916982 | Python | Python | py | Runtime Error | 0 | 0 | 48 | import sys
x = sys.stdin.readline()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp0mec0o08/tmpe11cd8p2.py", line 4, in <module>
print(x**3)
~^^~
TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'
| |
s685099938 | p02388 | u076937067 | 1450153475 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x=raw_input()
print x ** 3 | File "/tmp/tmp83apz2yy/tmplcbttkag.py", line 3
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s662646848 | p02388 | u076937067 | 1450153551 | Python | Python | py | Runtime Error | 0 | 0 | 24 | x=raw_input()
print x**3 | File "/tmp/tmpq2cqkuqd/tmpigy2c3_1.py", line 2
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s298161725 | p02388 | u261533743 | 1450498801 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) | Traceback (most recent call last):
File "/tmp/tmpzpgn6_ip/tmp9ikdfn39.py", line 1, in <module>
print(input()**3)
^^^^^^^
EOFError: EOF when reading a line
| |
s381567291 | p02388 | u995990363 | 1450620095 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | # -*- coding: utf-8 -*-
import sys
def calculate(x):
X = int(x)
return X * X * X
if __name__ == '__main__':
param = sys.argv
print(calculate(param[1])) | Traceback (most recent call last):
File "/tmp/tmpn09b8hwh/tmptsl5a1gb.py", line 13, in <module>
print(calculate(param[1]))
~~~~~^^^
IndexError: list index out of range
| |
s029408466 | p02388 | u493956406 | 1450714761 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | x = input(argv[1])
y = argv[1]*argv[1]*argv[1]
print(y) | Traceback (most recent call last):
File "/tmp/tmp99p76ubn/tmptya111q2.py", line 1, in <module>
x = input(argv[1])
^^^^
NameError: name 'argv' is not defined
| |
s796133301 | p02388 | u493956406 | 1450714785 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | x = input(argv[1])
y = x*x*x
print(y) | Traceback (most recent call last):
File "/tmp/tmpy2jxikok/tmp67x7hvxr.py", line 1, in <module>
x = input(argv[1])
^^^^
NameError: name 'argv' is not defined
| |
s259185456 | p02388 | u682357930 | 1452046573 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | return x*x*x; | File "/tmp/tmp9kkgr8gd/tmp1zp0qzm4.py", line 1
return x*x*x;
^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s385581462 | p02388 | u682357930 | 1452046588 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | return (x*x*x); | File "/tmp/tmpkhnkc2r3/tmpwy_qkb7d.py", line 1
return (x*x*x);
^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s987357146 | p02388 | u682357930 | 1452046669 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | def x_cubic(x):
print x*x*x; | File "/tmp/tmpkq2f9din/tmp23qtu59u.py", line 2
print x*x*x;
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s125524202 | p02388 | u682357930 | 1452046704 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | def x_cubic(x):
return x*x*x;
x_cubic(x); | Traceback (most recent call last):
File "/tmp/tmpo7gzszx0/tmpxzayreuy.py", line 4, in <module>
x_cubic(x);
^
NameError: name 'x' is not defined
| |
s519561571 | p02388 | u682357930 | 1452046736 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | n = 0;
n = x*x*x;
printf(n); | Traceback (most recent call last):
File "/tmp/tmp14vydjhp/tmpnomv7mp5.py", line 3, in <module>
n = x*x*x;
^
NameError: name 'x' is not defined
| |
s750875870 | p02388 | u682357930 | 1452046849 | Python | Python | py | Runtime Error | 0 | 0 | 27 | n = input();
return n*n*n; | File "/tmp/tmpwsi5l8nm/tmp3aki0hps.py", line 3
return n*n*n;
^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s140617577 | p02388 | u393769849 | 1452046916 | Python | Python | py | Runtime Error | 0 | 0 | 33 | def sanjou(x):
reeturn x * x * x | File "/tmp/tmpr_8hp86_/tmplfui5kk5.py", line 2
reeturn x * x * x
^
SyntaxError: invalid syntax
| |
s364947733 | p02388 | u970436839 | 1452046946 | Python | Python | py | Runtime Error | 0 | 0 | 25 | x = raw_input()
print x^3 | File "/tmp/tmplkxq1tjp/tmpw93dztbo.py", line 2
print x^3
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s412062234 | p02388 | u663227983 | 1452047020 | Python | Python | py | Runtime Error | 0 | 0 | 24 | a = input()
return a*a*a | File "/tmp/tmp_jumf9nc/tmpzcbhbred.py", line 2
return a*a*a
^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s821257527 | p02388 | u078762447 | 1452047045 | Python | Python | py | Runtime Error | 0 | 0 | 25 | n = import()
print n*n*n | File "/tmp/tmpt5_bgy42/tmphocniktr.py", line 1
n = import()
^^^^^^
SyntaxError: invalid syntax
| |
s906929006 | p02388 | u613805578 | 1452047067 | Python | Python | py | Runtime Error | 0 | 0 | 22 | x = input()
return x^3 | File "/tmp/tmp_ms_3wkx/tmpeakqx9vx.py", line 2
return x^3
^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s945995762 | p02388 | u663227983 | 1452047068 | Python | Python | py | Runtime Error | 0 | 0 | 24 | a = input()
return a*a*a | File "/tmp/tmpqegbdsc2/tmplk0r83nr.py", line 2
return a*a*a
^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s128804574 | p02388 | u038005340 | 1452047106 | Python | Python | py | Runtime Error | 0 | 0 | 40 | x = input()
x^3 = x * x * x;
print x^3 | File "/tmp/tmp1lkx7tkh/tmpiwqr5k0f.py", line 3
x^3 = x * x * x;
^^^
SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?
| |
s076338157 | p02388 | u078762447 | 1452047117 | Python | Python | py | Runtime Error | 0 | 0 | 34 | n = import()
a = n * n * n
print a | File "/tmp/tmpldw6kvzg/tmp577a4p8k.py", line 1
n = import()
^^^^^^
SyntaxError: invalid syntax
| |
s629926914 | p02388 | u663227983 | 1452047185 | Python | Python | py | Runtime Error | 0 | 0 | 24 | x = input()
return x*x*x | File "/tmp/tmpiheilthz/tmpssrifoll.py", line 2
return x*x*x
^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s555365432 | p02388 | u078762447 | 1452047213 | Python | Python | py | Runtime Error | 0 | 0 | 26 | import n
a = n*n*n
print a | File "/tmp/tmpl7o9o1u0/tmpgu22jxcw.py", line 3
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s953708627 | p02388 | u663227983 | 1452047256 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x = input()
return x*x*x
| File "/tmp/tmpt71tqd6e/tmpqcr3og4f.py", line 2
return x*x*x
IndentationError: unexpected indent
| |
s444101541 | p02388 | u078762447 | 1452047379 | Python | Python | py | Runtime Error | 0 | 0 | 28 | import (n)
a = n*n*n
print a | File "/tmp/tmpp9grvcoq/tmpwhaedo5k.py", line 1
import (n)
^
SyntaxError: invalid syntax
| |
s109404832 | p02388 | u078762447 | 1452047472 | Python | Python | py | Runtime Error | 0 | 0 | 39 | x = row_imput()
x = int(x)
print x ** 3 | File "/tmp/tmpln1hpd_t/tmpkhxmjga4.py", line 3
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s364334006 | p02388 | u824204304 | 1452047487 | Python | Python | py | Runtime Error | 0 | 0 | 42 | x = row_input()
x = int(x)
print x * x * x | File "/tmp/tmpy8_6ulo5/tmp_pkbnatn.py", line 3
print x * x * x
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s294479363 | p02388 | u920118302 | 1452047498 | Python | Python | py | Runtime Error | 0 | 0 | 34 | x = int(row_input())
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmprjqp8mjx/tmpcqgqi7vn.py", line 1, in <module>
x = int(row_input())
^^^^^^^^^
NameError: name 'row_input' is not defined
| |
s009129497 | p02388 | u038243492 | 1452047502 | Python | Python | py | Runtime Error | 0 | 0 | 40 | x = raw_input()
x = int(x)
print x = x^3 | File "/tmp/tmpx92nusx7/tmpokxrmwg5.py", line 3
print x = x^3
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s269186368 | p02388 | u078762447 | 1452047514 | Python | Python | py | Runtime Error | 0 | 0 | 39 | x = row_imput()
x = int(x)
print x ** 3 | File "/tmp/tmplkd1tcf2/tmp3ndtxowk.py", line 3
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s655409243 | p02388 | u630265299 | 1452047531 | Python | Python | py | Runtime Error | 0 | 0 | 28 | a = input()
return a * a * a | File "/tmp/tmpevf4eyg4/tmp4bhvtwlz.py", line 2
return a * a * a
^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s653641247 | p02388 | u038243492 | 1452047538 | Python | Python | py | Runtime Error | 0 | 0 | 46 | x = raw_input()
x = int(x)
print x = x * x * x | File "/tmp/tmpfrad2052/tmpbqr6hbqy.py", line 3
print x = x * x * x
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s951164565 | p02388 | u619765879 | 1452047587 | Python | Python | py | Runtime Error | 0 | 0 | 9 | print x^3 | File "/tmp/tmpg2fo5ga6/tmpfucvpb94.py", line 1
print x^3
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s078243797 | p02388 | u920118302 | 1452047591 | Python | Python | py | Runtime Error | 0 | 0 | 46 | x = row_input()
x = int(x)
x = x ** 3
print(x) | Traceback (most recent call last):
File "/tmp/tmpxbqd4qvs/tmpgbodytp2.py", line 1, in <module>
x = row_input()
^^^^^^^^^
NameError: name 'row_input' is not defined
| |
s479447538 | p02388 | u078762447 | 1452047605 | Python | Python | py | Runtime Error | 0 | 0 | 39 | x = raw_imput()
x = int(x)
print x ** 3 | File "/tmp/tmppssbve55/tmpkczn_baf.py", line 3
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s097028100 | p02388 | u630265299 | 1452047681 | Python | Python | py | Runtime Error | 0 | 0 | 32 | a = raw_input()
return a * a * a | File "/tmp/tmpaqys59r7/tmp3x7_f_ez.py", line 2
return a * a * a
^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s458884651 | p02388 | u619765879 | 1452047731 | Python | Python | py | Runtime Error | 0 | 0 | 16 | print '%d' % x^3 | File "/tmp/tmp4keals0t/tmpot0mzrp5.py", line 1
print '%d' % x^3
^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s569603043 | p02388 | u630265299 | 1452047761 | Python | Python | py | Runtime Error | 0 | 0 | 23 | a = input()
return a**3 | File "/tmp/tmpgtlhiacy/tmp2z9fawb8.py", line 2
return a**3
^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s216986558 | p02388 | u619765879 | 1452047766 | Python | Python | py | Runtime Error | 0 | 0 | 15 |
print '%d' % x | File "/tmp/tmptp_4ctv3/tmp7g_1b1cx.py", line 2
print '%d' % x
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s015793468 | p02388 | u885467869 | 1452047784 | Python | Python | py | Runtime Error | 0 | 0 | 24 | print "%d" % (x * x * x) | File "/tmp/tmpyw0_w6qb/tmph6sk5j0w.py", line 1
print "%d" % (x * x * x)
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s283465225 | p02388 | u630265299 | 1452047877 | Python | Python | py | Runtime Error | 0 | 0 | 31 | a = raw_input()
print a * a * a | File "/tmp/tmp_7j22b3q/tmpwp2uh4wh.py", line 2
print a * a * a
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s002827062 | p02388 | u619765879 | 1452047896 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = input()
print '%d' % x^3 | File "/tmp/tmpbpbdhst7/tmpjnamre4v.py", line 2
print '%d' % x^3
^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s374198777 | p02388 | u803327846 | 1452048038 | Python | Python | py | Runtime Error | 0 | 0 | 11 | print x ^ 3 | File "/tmp/tmpz6ogcj8a/tmpimgtf77e.py", line 1
print x ^ 3
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s948694511 | p02388 | u619765879 | 1452048040 | Python | Python | py | Runtime Error | 0 | 0 | 22 | x = 2
print '%d' % x^3 | File "/tmp/tmpaw1gx1ao/tmph5djrbsc.py", line 2
print '%d' % x^3
^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s099145330 | p02388 | u619765879 | 1452048105 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = input()
print '%d' % x^3 | File "/tmp/tmp82b9ymwk/tmp2wm29u5v.py", line 2
print '%d' % x^3
^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s757244544 | p02388 | u619765879 | 1452048135 | Python | Python | py | Runtime Error | 0 | 0 | 25 | input(x)
print '%d' % x^3 | File "/tmp/tmppginqxtg/tmpx0qzlafa.py", line 2
print '%d' % x^3
^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s821342180 | p02388 | u619765879 | 1452048153 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = input()
print '%d' % x^3 | File "/tmp/tmpm_n02ynp/tmp8ubjzfg7.py", line 2
print '%d' % x^3
^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s599445994 | p02388 | u885467869 | 1452048162 | Python | Python | py | Runtime Error | 0 | 0 | 34 | input (x)
print '%d' % (x * x * x) | File "/tmp/tmp1oxta38h/tmpi823zuk8.py", line 2
print '%d' % (x * x * x)
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s147506277 | p02388 | u177295149 | 1452048186 | Python | Python | py | Runtime Error | 0 | 0 | 18 | a = 3
return a*a*a | File "/tmp/tmpe1ejkm4w/tmp9r2rg83w.py", line 2
return a*a*a
^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s687675261 | p02388 | u967035362 | 1452048197 | Python | Python | py | Runtime Error | 0 | 0 | 38 | x = raw_input()
X = int(x)
print x*x*x | File "/tmp/tmpfjl9d5o8/tmpmvz6zd07.py", line 3
print x*x*x
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s063754251 | p02388 | u233232390 | 1452048415 | Python | Python | py | Runtime Error | 0 | 0 | 12 | return x*x*x | File "/tmp/tmp5a6wnsfv/tmpg9tjbmqq.py", line 1
return x*x*x
^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s929050905 | p02388 | u803327846 | 1452048489 | Python | Python | py | Runtime Error | 0 | 0 | 16 | return x * x * x | File "/tmp/tmpmsk0e66f/tmpm1guee5l.py", line 1
return x * x * x
^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s023322032 | p02388 | u233232390 | 1452048539 | Python | Python | py | Runtime Error | 0 | 0 | 20 | a = x*x*x
return a | File "/tmp/tmpn56sjnxy/tmp43vo076l.py", line 1
a = x*x*x
IndentationError: unexpected indent
| |
s683107056 | p02388 | u803327846 | 1452048571 | Python | Python | py | Runtime Error | 0 | 0 | 17 | print (x * x * x) | Traceback (most recent call last):
File "/tmp/tmprhjgwmmo/tmpaudvarra.py", line 1, in <module>
print (x * x * x)
^
NameError: name 'x' is not defined
| |
s289416999 | p02388 | u233232390 | 1452048583 | Python | Python | py | Runtime Error | 0 | 0 | 19 | a = x*x*x
return a | File "/tmp/tmpjpv1z10m/tmpfb5lqt3m.py", line 1
a = x*x*x
IndentationError: unexpected indent
| |
s350793319 | p02388 | u803327846 | 1452048590 | Python | Python | py | Runtime Error | 0 | 0 | 20 | print int(x * x * x) | File "/tmp/tmpjzty0quu/tmpm77dku8g.py", line 1
print int(x * x * x)
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s096083116 | p02388 | u803327846 | 1452048624 | Python | Python | py | Runtime Error | 0 | 0 | 36 | volume = x * x * x
print int(volume) | File "/tmp/tmpfzqxu78h/tmp79xv3cme.py", line 2
print int(volume)
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s099467362 | p02388 | u803327846 | 1452048652 | Python | Python | py | Runtime Error | 0 | 0 | 31 | volume = x * x * x
print volume | File "/tmp/tmp7_2bc05v/tmp766b6k3w.py", line 2
print volume
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s528268897 | p02388 | u233232390 | 1452048694 | Python | Python | py | Runtime Error | 0 | 0 | 19 | a = x*x*x
print a | File "/tmp/tmpr5bfzcxb/tmpz0qf87jc.py", line 1
a = x*x*x
IndentationError: unexpected indent
| |
s462431884 | p02388 | u803327846 | 1452048823 | Python | Python | py | Runtime Error | 0 | 0 | 43 | x = raw_input()
cube = x * x * x
print cube | File "/tmp/tmpha_qv3x6/tmp37u8zbvy.py", line 3
print cube
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s000795908 | p02388 | u803327846 | 1452048854 | Python | Python | py | Runtime Error | 0 | 0 | 36 | input(x)
cube = x * x * x
print cube | File "/tmp/tmpb9hvbndf/tmplgw4nx_n.py", line 3
print cube
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s965756660 | p02388 | u834416077 | 1452048901 | Python | Python | py | Runtime Error | 0 | 0 | 12 | print x*x*x: | File "/tmp/tmp0aeky7it/tmpk8in3glg.py", line 1
print x*x*x:
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s321062412 | p02388 | u532962080 | 1452048930 | Python | Python | py | Runtime Error | 0 | 0 | 24 | def test(x):
print x*x*x | File "/tmp/tmpgk3m3d_w/tmphf11ix8f.py", line 2
print x*x*x
^
IndentationError: expected an indented block after function definition on line 1
| |
s132853738 | p02388 | u233232390 | 1452049024 | Python | Python | py | Runtime Error | 0 | 0 | 21 | print "%d" & "x*x*x" | File "/tmp/tmpz8ve2wbp/tmp4pq_11zz.py", line 1
print "%d" & "x*x*x"
IndentationError: unexpected indent
| |
s109702483 | p02388 | u233232390 | 1452049063 | Python | Python | py | Runtime Error | 0 | 0 | 28 | a = x*x*x
print "%d" & "a" | File "/tmp/tmpq66sljis/tmpx8lzj1g8.py", line 1
a = x*x*x
IndentationError: unexpected indent
| |
s365889804 | p02388 | u532962080 | 1452049068 | Python | Python | py | Runtime Error | 0 | 0 | 11 | return x**3 | File "/tmp/tmpupwkauzr/tmpttcb_p8a.py", line 1
return x**3
^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s483627838 | p02388 | u834416077 | 1452049082 | Python | Python | py | Runtime Error | 0 | 0 | 18 | X = 3:
print x**3: | File "/tmp/tmpy_o6wl1y/tmpcxpqbo1x.py", line 1
X = 3:
^
SyntaxError: invalid syntax
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.