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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s797667202 | p02388 | u099155265 | 1460873829 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | # -*- coding:UTF-8 -*-
import sys
print(int(sys.argv[1]) ** 3 + "\n") | Traceback (most recent call last):
File "/tmp/tmphsnu9llv/tmpex6yr291.py", line 4, in <module>
print(int(sys.argv[1]) ** 3 + "\n")
~~~~~~~~^^^
IndexError: list index out of range
| |
s083628757 | p02388 | u099155265 | 1460873902 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | # -*- coding:UTF-8 -*-
import sys
print(int(sys.argv[1]) ** 3) | Traceback (most recent call last):
File "/tmp/tmp_j5q9iu2/tmp9m3p07wp.py", line 4, in <module>
print(int(sys.argv[1]) ** 3)
~~~~~~~~^^^
IndexError: list index out of range
| |
s191828507 | p02388 | u099155265 | 1460873916 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | # -*- coding:UTF-8 -*-
import sys
print(int(sys.argv[1]) ** 3)
print("\n") | Traceback (most recent call last):
File "/tmp/tmptobn2zpv/tmppcrxk6al.py", line 4, in <module>
print(int(sys.argv[1]) ** 3)
~~~~~~~~^^^
IndexError: list index out of range
| |
s027679324 | p02388 | u512127035 | 1460986339 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | input(n)
print(n**3) | Traceback (most recent call last):
File "/tmp/tmpeta026eb/tmpcnoua2sv.py", line 1, in <module>
input(n)
^
NameError: name 'n' is not defined
| |
s924804548 | p02388 | u512127035 | 1460986424 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | n = input()
print(n**3) | Traceback (most recent call last):
File "/tmp/tmplj1rxz0e/tmpsm1myy2x.py", line 1, in <module>
n = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s042320609 | p02388 | u754363241 | 1461115275 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x=2
>>> X=x*x*x
>>> print(X) | File "/tmp/tmp0hv_hny0/tmp3zhqqixa.py", line 2
>>> X=x*x*x
^^
SyntaxError: invalid syntax
| |
s834267724 | p02388 | u077284614 | 1461232172 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmpvbm21y6x/tmppgniry0l.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s857364713 | p02388 | u470643963 | 1461478476 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | # -*- coding: utf-8 -*-
import sys
input = sys.argv
print( int( input[1] ) ** 3 ) | Traceback (most recent call last):
File "/tmp/tmpzk0zf7rq/tmp71qw4bz7.py", line 6, in <module>
print( int( input[1] ) ** 3 )
~~~~~^^^
IndexError: list index out of range
| |
s546654452 | p02388 | u470643963 | 1461478549 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | import sys
input = sys.argv
print( int( input[1] ) ** 3 ) | Traceback (most recent call last):
File "/tmp/tmpj1dadrus/tmpovtfcvxg.py", line 4, in <module>
print( int( input[1] ) ** 3 )
~~~~~^^^
IndexError: list index out of range
| |
s905129788 | p02388 | u470643963 | 1461478597 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | input = sys.argv
print( int( input[1] ) ** 3 ) | Traceback (most recent call last):
File "/tmp/tmpjp6u7ozr/tmp8h2i5ogf.py", line 1, in <module>
input = sys.argv
^^^
NameError: name 'sys' is not defined
| |
s598913307 | p02388 | u470643963 | 1461478877 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import sys
input = sys.argv
result = int( input[1] ) ** 3
print( result ) | Traceback (most recent call last):
File "/tmp/tmpa6nwkg62/tmpx37sbfuy.py", line 4, in <module>
result = int( input[1] ) ** 3
~~~~~^^^
IndexError: list index out of range
| |
s850773219 | p02388 | u447154297 | 1461661268 | Python | Python3 | py | Runtime Error | 0 | 0 | 10 | print x**3 | File "/tmp/tmprh1bgl8a/tmp5unnd2or.py", line 1
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s793516540 | p02388 | u447154297 | 1461661408 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmprugvy9y7/tmp7ykzwk4o.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s957393869 | p02388 | u447154297 | 1461661459 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x=input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpsqswzpdy/tmpi_9irnbx.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s565788590 | p02388 | u692329827 | 1461750175 | Python | Python | py | Runtime Error | 0 | 0 | 27 | X = raw_input()
print X*X*X | File "/tmp/tmpw40c7k9b/tmp5qv0ixqn.py", line 2
print X*X*X
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s663633901 | p02388 | u617990214 | 1461753259 | Python | Python | py | Runtime Error | 0 | 0 | 10 | print x**3 | File "/tmp/tmpcraa_t_n/tmppt8dfhd1.py", line 1
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s018128122 | p02388 | u617990214 | 1461753536 | Python | Python | py | Runtime Error | 0 | 0 | 10 | print x**3 | File "/tmp/tmpi668e0m3/tmpw5iq65u_.py", line 1
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s011838157 | p02388 | u617990214 | 1461754044 | Python | Python | py | Runtime Error | 0 | 0 | 11 | print x*x*x | File "/tmp/tmpq0_jnbkv/tmpfnc9o9xq.py", line 1
print x*x*x
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s889823361 | p02388 | u617990214 | 1461754768 | Python | Python | py | Runtime Error | 0 | 0 | 21 | x=import()
print x**3 | File "/tmp/tmpk1g7afo2/tmpq166qd46.py", line 1
x=import()
^^^^^^
SyntaxError: invalid syntax
| |
s628522293 | p02388 | u105949207 | 1462155112 | Python | Python | py | Runtime Error | 0 | 0 | 120 | def keisan(num):
x = num
keisan = x ** 3
return keisan
if __name__ == '__main__':
print(keisan(2) + \n) | File "/tmp/tmpjm9akayx/tmp7wr1nf1n.py", line 7
print(keisan(2) + \n)
^
SyntaxError: unexpected character after line continuation character
| |
s226778467 | p02388 | u105949207 | 1462155213 | Python | Python | py | Runtime Error | 0 | 0 | 34 | x = 2
sum = x ** 3
print(sum + \n) | File "/tmp/tmpanbdhd1s/tmp97d5j2ag.py", line 3
print(sum + \n)
^
SyntaxError: unexpected character after line continuation character
| |
s535818511 | p02388 | u105949207 | 1462155274 | Python | Python | py | Runtime Error | 0 | 0 | 40 | arry = [x = 2, x ** 3]
print(arry + \n) | File "/tmp/tmpge1o_ccd/tmp32d1i76f.py", line 1
arry = [x = 2, x ** 3]
^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s062352723 | p02388 | u999470575 | 1462173394 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | x ** 3 == i:
print(i) | File "/tmp/tmpm14_p7de/tmpz1a_cb8_.py", line 1
x ** 3 == i:
^
SyntaxError: invalid syntax
| |
s945062100 | p02388 | u999470575 | 1462174394 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x**3 == i:
print(i) | File "/tmp/tmpfqik7w4t/tmpmcqhmpmk.py", line 1
x**3 == i:
^
SyntaxError: invalid syntax
| |
s650633141 | p02388 | u999470575 | 1462174473 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x**3 == i:
print(i) | File "/tmp/tmpznpdra1b/tmp4jolr5ca.py", line 1
x**3 == i:
^
SyntaxError: invalid syntax
| |
s468723648 | p02388 | u999470575 | 1462175158 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 | Traceback (most recent call last):
File "/tmp/tmpktmvj8pz/tmpf3pua00z.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s968705874 | p02388 | u999470575 | 1462175310 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | x = raw_input()
print(str(int(x) ** 3)) | Traceback (most recent call last):
File "/tmp/tmpqb5gbcag/tmpnsuekuko.py", line 1, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s171450016 | p02388 | u999470575 | 1462713371 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = raw_input()
print((x) * 3) | File "/tmp/tmp67ywwctp/tmpq73ed3hp.py", line 2
print((x) * 3)
IndentationError: unexpected indent
| |
s989559184 | p02388 | u999470575 | 1462713438 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | raw_input()
print((x) * 3) | File "/tmp/tmpensr4i72/tmppcbxjboc.py", line 2
print((x) * 3)
IndentationError: unexpected indent
| |
s143767558 | p02388 | u999470575 | 1462777421 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = input()
b = input()
print((int(a) * int(b),(int(a) * 2) + (int(b) * 2))) | Traceback (most recent call last):
File "/tmp/tmpolx5y098/tmpds_dqc7w.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s855802433 | p02388 | u412890344 | 1462841945 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | x = int(sys.argv[1])
print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmpxamenjew/tmpz4echc2s.py", line 1, in <module>
x = int(sys.argv[1])
^^^
NameError: name 'sys' is not defined
| |
s236728036 | p02388 | u412890344 | 1462842151 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmpga8i5obc/tmpdvv22n2c.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s945025902 | p02388 | u907957429 | 1462900968 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | a = input()
print(a**3) | Traceback (most recent call last):
File "/tmp/tmpzzv82l5e/tmpnt_6a3k3.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s776264372 | p02388 | u104931506 | 1463150532 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmpkg0394d1/tmpdwy_rulj.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s422472360 | p02388 | u930806831 | 1463233421 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | x = int(input())
def sanjo(x):
return x**3
print(sanjo(x))\n | File "/tmp/tmpn2c7begg/tmplblnh3cc.py", line 5
print(sanjo(x))\n
^
SyntaxError: unexpected character after line continuation character
| |
s830682316 | p02388 | u104931506 | 1463701230 | Python | Python3 | py | Runtime Error | 0 | 0 | 19 | x = int
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpxau6w5h0/tmpr_j7f540.py", line 2, in <module>
print(x**3)
~^^~
TypeError: unsupported operand type(s) for ** or pow(): 'type' and 'int'
| |
s083973032 | p02388 | u070968430 | 1463712504 | Python | Python3 | py | Runtime Error | 0 | 0 | 7 | x = x^3 | Traceback (most recent call last):
File "/tmp/tmp955wvqhw/tmpoxsodt3m.py", line 1, in <module>
x = x^3
^
NameError: name 'x' is not defined
| |
s462406687 | p02388 | u070968430 | 1463712567 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | def cubic(x):
x = x^3
print(x\n) | File "/tmp/tmpezzg1vae/tmp63jxrnpb.py", line 3
print(x\n)
^
SyntaxError: unexpected character after line continuation character
| |
s541724693 | p02388 | u070968430 | 1463712746 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | x = x**3
print(x) | Traceback (most recent call last):
File "/tmp/tmpql3xavs1/tmpgsfawqcq.py", line 1, in <module>
x = x**3
^
NameError: name 'x' is not defined
| |
s433310957 | p02388 | u070968430 | 1463713010 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | answer = x **3
print(answer) | Traceback (most recent call last):
File "/tmp/tmpyxi4bm74/tmpz7uj9sb6.py", line 1, in <module>
answer = x **3
^
NameError: name 'x' is not defined
| |
s570490987 | p02388 | u076937067 | 1463804002 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 | Traceback (most recent call last):
File "/tmp/tmpea7vy13c/tmpp_wxrupv.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s223538222 | p02388 | u076937067 | 1463804057 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmpwcj5b6da/tmp4i5n4gy8.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s160526874 | p02388 | u823513038 | 1463879674 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) | Traceback (most recent call last):
File "/tmp/tmphokj6shx/tmpge3k_0uv.py", line 1, in <module>
print(input()**3)
^^^^^^^
EOFError: EOF when reading a line
| |
s531401153 | p02388 | u070968430 | 1463886321 | Python | Python3 | py | Runtime Error | 0 | 0 | 19 | y = x ** 3
print(y) | Traceback (most recent call last):
File "/tmp/tmp660qx49b/tmpsbhnwwl1.py", line 1, in <module>
y = x ** 3
^
NameError: name 'x' is not defined
| |
s771250700 | p02388 | u886729239 | 1463932507 | Python | Python | py | Runtime Error | 0 | 0 | 24 | i= readInt()
print i*i*i | File "/tmp/tmp5c6g7zt1/tmpjxfahmz_.py", line 2
print i*i*i
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s664284391 | p02388 | u305878853 | 1464004594 | Python | Python3 | py | Runtime Error | 0 | 0 | 19 | x = 2
print (x*x*x} | File "/tmp/tmpzg_74qnn/tmpbcz_u18_.py", line 2
print (x*x*x}
^
SyntaxError: closing parenthesis '}' does not match opening parenthesis '('
| |
s046921014 | p02388 | u305878853 | 1464005044 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | a = int(input())
b*b*b | Traceback (most recent call last):
File "/tmp/tmpq77zvjz4/tmp2adv03g0.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s430381236 | p02388 | u403901064 | 1464096004 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | num = int(input())
print(num ** 3)
return | File "/tmp/tmpkthlpq2l/tmpym4zgb51.py", line 3
return
^^^^^^
SyntaxError: 'return' outside function
| |
s927447052 | p02388 | u403901064 | 1464096393 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | num = int(input())
print(num ** 3)
return 0 | File "/tmp/tmp996qpzcs/tmpef91atfd.py", line 3
return 0
^^^^^^^^
SyntaxError: 'return' outside function
| |
s726920019 | p02388 | u403901064 | 1464096425 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | num = int(input())
print("\n",num ** 3)
return 0 | File "/tmp/tmp0dkwtlza/tmpn7m6onbq.py", line 3
return 0
^^^^^^^^
SyntaxError: 'return' outside function
| |
s042035996 | p02388 | u403901064 | 1464096579 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | def main();
num = int(input())
print("\n",num ** 3)
return 0 | File "/tmp/tmpyt7mdbh0/tmpoxkv0vio.py", line 1
def main();
^
SyntaxError: expected ':'
| |
s069373452 | p02388 | u403901064 | 1464096700 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | def main();
num = int(input())
print(num ** 3)
return0 | File "/tmp/tmpt96wkfy_/tmp64emmygu.py", line 1
def main();
^
SyntaxError: expected ':'
| |
s439605113 | p02388 | u403901064 | 1464096725 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | def main();
num = int(input())
print(num ** 3)
return | File "/tmp/tmpepqgvhxl/tmp2o3uo6vq.py", line 1
def main();
^
SyntaxError: expected ':'
| |
s839847344 | p02388 | u177370127 | 1464756319 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmplx92aj75/tmp1r3i1kjf.py", line 1, in <module>
print(x ** 3)
^
NameError: name 'x' is not defined
| |
s322895482 | p02388 | u177370127 | 1464759305 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmp3f_buw68/tmp3c0cgif5.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s683366035 | p02388 | u734072322 | 1465463730 | Python | Python | py | Runtime Error | 0 | 0 | 12 | print n ** 3 | File "/tmp/tmpocjfi9ub/tmphqiavta8.py", line 1
print n ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s790300304 | p02388 | u734072322 | 1465463797 | Python | Python | py | Runtime Error | 0 | 0 | 29 | n = raw_input()
print n ** 3 | File "/tmp/tmpjiqjb0rc/tmp5i5h65jp.py", line 3
print n ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s396673554 | p02388 | u269653912 | 1466016638 | Python | Python | py | Runtime Error | 0 | 0 | 26 | n = raw_input()
print n**3 | File "/tmp/tmpcy08bir3/tmpi238yjf3.py", line 2
print n**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s810703025 | p02388 | u269653912 | 1466016743 | Python | Python | py | Runtime Error | 0 | 0 | 26 | n = raw_input()
print n**3 | File "/tmp/tmpvzfv17ar/tmpunua9_71.py", line 2
print n**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s200904288 | p02388 | u269653912 | 1466016899 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | n = input()
print n**3 | File "/tmp/tmps25nvee9/tmpvp85svtb.py", line 2
print n**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s716593279 | p02388 | u269653912 | 1466016921 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | n = input()
print(n**3) | Traceback (most recent call last):
File "/tmp/tmpqpauj4oe/tmp75vnx694.py", line 1, in <module>
n = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s432450470 | p02388 | u269653912 | 1466016943 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | n = int(raw_input())
print(n**3) | Traceback (most recent call last):
File "/tmp/tmp8vooq9_r/tmp3iex2lx4.py", line 1, in <module>
n = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s069070960 | p02388 | u123854743 | 1467391685 | Python | Python | py | Runtime Error | 0 | 0 | 31 | x = raw_input()
print x * x * x | File "/tmp/tmpb5jqe2qg/tmpht3uc05c.py", line 2
print x * x * x
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s471711958 | p02388 | u834819056 | 1467655111 | Python | Python | py | Runtime Error | 0 | 0 | 28 | n = raw_input()
print n*n*n | File "/tmp/tmp_c2hjond/tmp1rfe52_a.py", line 3
print n*n*n
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s684603662 | p02388 | u834819056 | 1467655305 | Python | Python | py | Runtime Error | 0 | 0 | 30 | n = int(raw_input)
print n**3 | File "/tmp/tmpombfoloy/tmpaxwr33hy.py", line 3
print n**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s937172244 | p02388 | u162598098 | 1469101444 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmpi8qoj6t9/tmpg7hizxze.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s651010546 | p02388 | u162598098 | 1469101591 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 | Traceback (most recent call last):
File "/tmp/tmpljfabtva/tmplnqbo133.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s085137320 | p02388 | u162598098 | 1469102741 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmpo1c299px/tmp2_vz5fwd.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s812947803 | p02388 | u162598098 | 1469102854 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 | Traceback (most recent call last):
File "/tmp/tmpyd82fvvi/tmpycue1eoi.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s046775323 | p02388 | u162598098 | 1469103061 | Python | Python3 | py | Runtime Error | 0 | 0 | 5 | x*x*x | Traceback (most recent call last):
File "/tmp/tmp8ctxffcn/tmpxt7qz0x4.py", line 1, in <module>
x*x*x
^
NameError: name 'x' is not defined
| |
s225773302 | p02388 | u162598098 | 1469103872 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | if __name__="__main__":
print(x**3) | File "/tmp/tmpdod4m93r/tmpf0wpigou.py", line 1
if __name__="__main__":
^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s878685268 | p02388 | u612243550 | 1469353972 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | X = int(input())
Print(x * x * x) | Traceback (most recent call last):
File "/tmp/tmpdhcyjhr9/tmpzy75ovit.py", line 1, in <module>
X = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s367122685 | p02388 | u612243550 | 1469354176 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | import sys
x = int(sys.argv[1])
print(x * x * x) | File "/tmp/tmp6o4kqiz_/tmpxz35p27c.py", line 4
print(x * x * x)
IndentationError: unexpected indent
| |
s564416571 | p02388 | u612243550 | 1469354246 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | import sys
x = int(sys.argv[1])
print(x * x * x) | File "/tmp/tmpepna2ial/tmp90lm8b8m.py", line 1
import sys
IndentationError: unexpected indent
| |
s449260464 | p02388 | u757827098 | 1469509915 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmppdbw696w/tmphirwb9e2.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s962348322 | p02388 | u757827098 | 1469509992 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | x ==2
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpye55rl97/tmp06bise3x.py", line 1, in <module>
x ==2
^
NameError: name 'x' is not defined
| |
s862434832 | p02388 | u204883389 | 1469510261 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | x ** 3
x = 2 | Traceback (most recent call last):
File "/tmp/tmpc_97f860/tmptrm2vd01.py", line 1, in <module>
x ** 3
^
NameError: name 'x' is not defined
| |
s818911582 | p02388 | u628732336 | 1469510356 | Python | Python3 | py | Runtime Error | 0 | 0 | 10 | print(x*3) | Traceback (most recent call last):
File "/tmp/tmpe2lzex6s/tmp8bpf_ozq.py", line 1, in <module>
print(x*3)
^
NameError: name 'x' is not defined
| |
s056077455 | p02388 | u628732336 | 1469510404 | Python | Python3 | py | Runtime Error | 0 | 0 | 6 | x ** 3 | Traceback (most recent call last):
File "/tmp/tmpf2lddfrx/tmp4lkgpstb.py", line 1, in <module>
x ** 3
^
NameError: name 'x' is not defined
| |
s019413213 | p02388 | u204883389 | 1469510424 | Python | Python3 | py | Runtime Error | 0 | 0 | 6 | x ** 3 | Traceback (most recent call last):
File "/tmp/tmpsxv4kvpl/tmpafycz1zz.py", line 1, in <module>
x ** 3
^
NameError: name 'x' is not defined
| |
s515946132 | p02388 | u587193722 | 1469510607 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmpbiie4uc9/tmp29l7b49k.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s171747799 | p02388 | u369313788 | 1469510621 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmpm_8a8kox/tmpk5ixpzuy.py", line 1, in <module>
print(x ** 3)
^
NameError: name 'x' is not defined
| |
s461090403 | p02388 | u671553883 | 1469510768 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = int(print())
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmprjynam2c/tmpivkd0n5i.py", line 1, in <module>
x = int(print())
^^^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'
| |
s190334377 | p02388 | u671553883 | 1469510789 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = int(print())
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpvquc588c/tmpce7_lgqo.py", line 1, in <module>
x = int(print())
^^^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'
| |
s004010284 | p02388 | u671553883 | 1469510800 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = int(print())
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpe3wv1gya/tmp7fckh66b.py", line 1, in <module>
x = int(print())
^^^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'
| |
s778969177 | p02388 | u671553883 | 1469510817 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = int(print())
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp_ii67f3b/tmpu5gvvebx.py", line 1, in <module>
x = int(print())
^^^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'
| |
s183292132 | p02388 | u671553883 | 1469510845 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = int(print())
print(x**3) | File "/tmp/tmpmz36s3os/tmphnk7q3dg.py", line 2
print(x**3)
IndentationError: unexpected indent
| |
s821116736 | p02388 | u671553883 | 1469510868 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = int(print())
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp5vkpwql3/tmp94rplovj.py", line 1, in <module>
x = int(print())
^^^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'
| |
s507355991 | p02388 | u216425054 | 1470495775 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmp411_ip5v/tmp7wxftp72.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s209744591 | p02388 | u216425054 | 1470495886 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 | Traceback (most recent call last):
File "/tmp/tmpwzbs7zox/tmpxjxfb21l.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s233319879 | p02388 | u652525711 | 1470845833 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpvkb2mtz0/tmpwbqb34_8.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s781259224 | p02388 | u652525711 | 1470914285 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmp8frcn_jn/tmprcszyxgu.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s589801194 | p02388 | u186194231 | 1471763944 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | print(int(input()) ** int(input())) | Traceback (most recent call last):
File "/tmp/tmp2rit16u3/tmp0s51m_o0.py", line 1, in <module>
print(int(input()) ** int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s759982899 | p02388 | u231136358 | 1471768107 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | N = input()
print(N*N*N) | Traceback (most recent call last):
File "/tmp/tmpu94lkbpt/tmpevoed4q1.py", line 1, in <module>
N = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s323111295 | p02388 | u231136358 | 1471768130 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | N = input()
print(N*N*N) | Traceback (most recent call last):
File "/tmp/tmpqd7llxwx/tmpawyhk0du.py", line 1, in <module>
N = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s034342370 | p02388 | u231136358 | 1471768157 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | N = input()
N = N*N*N
print(N) | Traceback (most recent call last):
File "/tmp/tmp9iyox2f_/tmp0gxiiisf.py", line 1, in <module>
N = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s657599203 | p02388 | u655138261 | 1471877004 | Python | Python | py | Runtime Error | 0 | 0 | 41 | #coding:utf-8
2 x = input()
3 print x*x*x | File "/tmp/tmp6aod80qg/tmpj2l5qar5.py", line 2
2 x = input()
^
SyntaxError: invalid syntax
| |
s782344670 | p02388 | u655138261 | 1471877094 | Python | Python | py | Runtime Error | 0 | 0 | 40 | #coding:utf-8
2 x = input()
3 print x**3 | File "/tmp/tmpii0szf2y/tmpr2dqc7qw.py", line 2
2 x = input()
^
SyntaxError: invalid syntax
| |
s669049697 | p02388 | u047093194 | 1473167507 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | no = input()
answer = no**3
print(answer) | Traceback (most recent call last):
File "/tmp/tmpshg81gm6/tmpfz6oq4j5.py", line 1, in <module>
no = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s829141555 | p02388 | u362094064 | 1473314256 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = input()
y = x**3
print int(y) | File "/tmp/tmp5lt23ah4/tmpy3ssdnde.py", line 5
print int(y)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.