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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s120361537 | p02388 | u369093003 | 1515071041 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | print(int(input)**3)
| Traceback (most recent call last):
File "/tmp/tmphns84glr/tmpaa14tb55.py", line 1, in <module>
print(int(input)**3)
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s904668524 | p02388 | u346997770 | 1515252566 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpkedhalcu/tmpu_lzb209.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s720946646 | p02388 | u346997770 | 1515252628 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpasjn2mj2/tmp7smexe7i.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s176945090 | p02388 | u346997770 | 1515253009 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input() print(x*x*x)
| File "/tmp/tmp1vg3fsdv/tmpjh_b2aoh.py", line 1
x = input() print(x*x*x)
^^^^^
SyntaxError: invalid syntax
| |
s877096766 | p02388 | u346997770 | 1515253037 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = int(input()) print(x**3)
| File "/tmp/tmp0t_irf46/tmpe0qr2cbf.py", line 1
x = int(input()) print(x**3)
^^^^^
SyntaxError: invalid syntax
| |
s144558232 | p02388 | u072855832 | 1515483329 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | x = input('sample1:')
x = x**3
print(x)
| Traceback (most recent call last):
File "/tmp/tmpalrayk7s/tmp12hi7z9y.py", line 1, in <module>
x = input('sample1:')
^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| sample1: |
s756435905 | p02388 | u072855832 | 1515483551 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 |
x = x**3
print(x)
| Traceback (most recent call last):
File "/tmp/tmp0y5w4dey/tmpev2ti3m0.py", line 2, in <module>
x = x**3
^
NameError: name 'x' is not defined
| |
s047864397 | p02388 | u113501470 | 1515512190 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | def cubic(x):
return x*x*x
print cubic(x)
| File "/tmp/tmpyaw90bvs/tmpgsvj3s7z.py", line 4
print cubic(x)
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s889818390 | p02388 | u113501470 | 1515512240 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpdph0bx18/tmpo4wqpgl6.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s859298824 | p02388 | u113501470 | 1515512326 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | print(math.pow(x,3))
| Traceback (most recent call last):
File "/tmp/tmpfeliu50f/tmpvo6qymae.py", line 1, in <module>
print(math.pow(x,3))
^^^^
NameError: name 'math' is not defined
| |
s215052020 | p02388 | u113501470 | 1515512403 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | print(math.pow(x,3))
| Traceback (most recent call last):
File "/tmp/tmp3c6_g_fg/tmpma4vfacu.py", line 1, in <module>
print(math.pow(x,3))
^^^^
NameError: name 'math' is not defined
| |
s124032467 | p02388 | u506468108 | 1515589219 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | cube = x*x*x
print(cube)
| Traceback (most recent call last):
File "/tmp/tmpw6rujd09/tmp_3y9qs99.py", line 1, in <module>
cube = x*x*x
^
NameError: name 'x' is not defined
| |
s036758785 | p02388 | u506468108 | 1515589415 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | print("{0}".fomat(x*x*x))
| Traceback (most recent call last):
File "/tmp/tmpo74hootf/tmpa3cr80x6.py", line 1, in <module>
print("{0}".fomat(x*x*x))
^^^^^^^^^^^
AttributeError: 'str' object has no attribute 'fomat'. Did you mean: 'format'?
| |
s408576713 | p02388 | u179070318 | 1515908232 | Python | Python | py | Runtime Error | 0 | 0 | 6 | =x**3
| File "/tmp/tmpf8jp87lk/tmplogl1soa.py", line 1
=x**3
^
SyntaxError: invalid syntax
| |
s444179702 | p02388 | u179070318 | 1515908485 | Python | Python | py | Runtime Error | 0 | 0 | 24 | a = input()
return a**3
| File "/tmp/tmp9lmy5r66/tmpcdrz14cp.py", line 2
return a**3
^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s060876090 | p02388 | u201482750 | 1516074510 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | n=input()
print(n**3)
| Traceback (most recent call last):
File "/tmp/tmpesswqks5/tmpxoxkb7uq.py", line 1, in <module>
n=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s825539000 | p02388 | u201482750 | 1516074777 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | n=(int)input()
print(n**3)
| File "/tmp/tmpykm5tc6j/tmpb_kodjp2.py", line 1
n=(int)input()
^^^^^
SyntaxError: invalid syntax
| |
s361045403 | p02388 | u265901776 | 1516104916 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 | print(x ** 3\n)
| File "/tmp/tmpqt3v4uvw/tmpyligu7lf.py", line 1
print(x ** 3\n)
^
SyntaxError: unexpected character after line continuation character
| |
s222489754 | p02388 | u265901776 | 1516104951 | Python | Python3 | py | Runtime Error | 0 | 0 | 14 | print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpr7z3m7q3/tmpyrbi9_p4.py", line 1, in <module>
print(x ** 3)
^
NameError: name 'x' is not defined
| |
s996112499 | p02388 | u265901776 | 1516105022 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print(x ** 3"\n")
| File "/tmp/tmpwjwwykgc/tmpz_la8qmh.py", line 1
print(x ** 3"\n")
^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s692574977 | p02388 | u227984374 | 1516164422 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | int = x
print(x**2)
| Traceback (most recent call last):
File "/tmp/tmp84nlfrbj/tmpol3vkoop.py", line 1, in <module>
int = x
^
NameError: name 'x' is not defined
| |
s028262094 | p02388 | u227984374 | 1516164594 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | int = x
y = x**3
print(y)
| Traceback (most recent call last):
File "/tmp/tmpxe9qm9xi/tmpt302ptlt.py", line 1, in <module>
int = x
^
NameError: name 'x' is not defined
| |
s776595829 | p02388 | u059121893 | 1516203630 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | cube = input()
print(cube**3)
| Traceback (most recent call last):
File "/tmp/tmpclob2u29/tmpjpj0xw3s.py", line 1, in <module>
cube = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s401310345 | p02388 | u884342371 | 1516363490 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpnloul7zn/tmpvxzlgj4x.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s481199659 | p02388 | u242616913 | 1516776608 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | s = input()
print(s**3)
| Traceback (most recent call last):
File "/tmp/tmp46oenyxp/tmp6ddq1n14.py", line 1, in <module>
s = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s904625754 | p02388 | u242616913 | 1516777135 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | s = input()
print( s ** 3)
| Traceback (most recent call last):
File "/tmp/tmpja4qtfq1/tmpyedx67ce.py", line 1, in <module>
s = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s283945339 | p02388 | u294922877 | 1516845853 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | def get_cubic(x):
return x ** 3
if __name__ == '__main__':
x = int(input())
print(x_cubic(x))
| Traceback (most recent call last):
File "/tmp/tmp64sqgzcm/tmpobc21tyn.py", line 5, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s589891111 | p02388 | u294922877 | 1516845870 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | def get_cubic(x):
return x ** 3
if __name__ == '__main__':
x = int(input())
print(x_cubic(x))
| Traceback (most recent call last):
File "/tmp/tmpd4pn4uek/tmp6neuj5q1.py", line 5, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s598036754 | p02388 | u562707982 | 1516873713 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp4t9hu8ry/tmpam1f16rn.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s505396966 | p02388 | u641357568 | 1517117982 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | input(x)
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpdk8qp9_i/tmpoasw1jsx.py", line 1, in <module>
input(x)
^
NameError: name 'x' is not defined
| |
s482874964 | p02388 | u641357568 | 1517118064 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpk4a0qyx0/tmpdgexk_78.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s350349273 | p02388 | u129532107 | 1517283049 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | a=input()
print(a*a*a)
| Traceback (most recent call last):
File "/tmp/tmp9dbm40v7/tmpb1ltrke5.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s476035605 | p02388 | u129532107 | 1517283076 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | a=input()
b=a*a*a
print(b)
| Traceback (most recent call last):
File "/tmp/tmp8b3genjo/tmpxi_g5qm3.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s348578949 | p02388 | u640809202 | 1517655531 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(x * x * x)
| Traceback (most recent call last):
File "/tmp/tmpdhfxct74/tmp99z210y7.py", line 1, in <module>
print(x * x * x)
^
NameError: name 'x' is not defined
| |
s058442309 | p02388 | u640809202 | 1517655800 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | int x = int(input())
print(x*x*x)
| File "/tmp/tmp2vguftva/tmpv8ekaxcf.py", line 1
int x = int(input())
^
SyntaxError: invalid syntax
| |
s049687260 | p02388 | u640809202 | 1517655821 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmp1ozsm3fu/tmpr05b_zj5.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s192689236 | p02388 | u640809202 | 1517655911 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
x = x*x*x
print(x)
| Traceback (most recent call last):
File "/tmp/tmp00r70b5r/tmpsoy2pmj1.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s184602713 | p02388 | u640809202 | 1517655926 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | x = input()
x = (x*x*x)
print(x)
| Traceback (most recent call last):
File "/tmp/tmpi7j9rg8s/tmp2usr5kbs.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s840549172 | p02388 | u640809202 | 1517655937 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
x = (x^3)
print(x)
| Traceback (most recent call last):
File "/tmp/tmp1w2xnqba/tmpczjxom_g.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s432081797 | p02388 | u798565376 | 1517679469 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpu4u0owx1/tmpuue5lirb.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s912232591 | p02388 | u798565376 | 1517679533 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp1mubzy1y/tmpu_0gweh8.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s564332234 | p02388 | u798565376 | 1517679624 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = input()
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmp19spl8dx/tmpjjmg390y.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s870417449 | p02388 | u798565376 | 1517679720 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | x = input()
cube = x ** 3
print(cube)
| Traceback (most recent call last):
File "/tmp/tmp4ehho3oi/tmp2m4nuiw5.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s568232013 | p02388 | u798565376 | 1517679753 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | x = input()
cube = x * x * x
print(cube)
| Traceback (most recent call last):
File "/tmp/tmp01bsvook/tmphh1eqdeg.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s446306963 | p02388 | u017047651 | 1517819178 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 |
h1 = int(raw_input())
h1 = h1**3
print( h1 )
| Traceback (most recent call last):
File "/tmp/tmpcc0vtn36/tmpn23ie5wa.py", line 2, in <module>
h1 = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s621442850 | p02388 | u017047651 | 1517819254 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 |
h1 = int(raw_input())
print( h1**3 )
| Traceback (most recent call last):
File "/tmp/tmpfuwefeb2/tmp3yvsilmp.py", line 2, in <module>
h1 = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s900680011 | p02388 | u017047651 | 1517819584 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | for x in range(100):
h1 = int(raw_input())
h1 = h1**3
print( str(h1) + "\r\n")
| Traceback (most recent call last):
File "/tmp/tmpd_j9fcid/tmp7yipw11_.py", line 3, in <module>
h1 = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s237546476 | p02388 | u017047651 | 1517820052 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | h1 = int(raw_input())
h1 = h1**3
print("\r\n")
print( str(h1) + "\r\n")
| Traceback (most recent call last):
File "/tmp/tmpdd2nvium/tmpath4dqym.py", line 1, in <module>
h1 = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s154587477 | p02388 | u451954092 | 1517992323 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x=input()
x=x**3
print(x)
| Traceback (most recent call last):
File "/tmp/tmpfx7m8gxk/tmprt3euy0s.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s547424016 | p02388 | u451954092 | 1517992557 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | x=input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpi4wv6cmn/tmpyz5w7zhd.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s771957832 | p02388 | u451954092 | 1517992701 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | x=input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp8uvmtugt/tmpyfrndmv3.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s614736972 | p02388 | u095105751 | 1517992914 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | Print(2**3)
| Traceback (most recent call last):
File "/tmp/tmpcf1x5fqe/tmpl0wm53ki.py", line 1, in <module>
Print(2**3)
^^^^^
NameError: name 'Print' is not defined. Did you mean: 'print'?
| |
s941535003 | p02388 | u722929725 | 1518416496 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpnn_vu77o/tmp6p9w1d7z.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s950591984 | p02388 | u974598049 | 1518520818 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(X*X*X)
| Traceback (most recent call last):
File "/tmp/tmpxmrqtd4f/tmpdc8dd78b.py", line 1, in <module>
print(X*X*X)
^
NameError: name 'X' is not defined
| |
s633835247 | p02388 | u974598049 | 1518521505 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print (X**3)
| Traceback (most recent call last):
File "/tmp/tmpxfic7fib/tmpx3oyuuvd.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s136573858 | p02388 | u974598049 | 1518521647 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | x = input()
y = x**3
print(y)
| Traceback (most recent call last):
File "/tmp/tmpgd3dx4gl/tmpzex_0u5x.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s471505165 | p02388 | u671760895 | 1518536403 | Python | Python | py | Runtime Error | 0 | 0 | 39 | N = input()
N = pow(N,3)
print(N¥n)
| File "/tmp/tmp0yctsj8m/tmpwwpwiuju.py", line 5
print(N¥n)
^
SyntaxError: invalid character '¥' (U+00A5)
| |
s183045516 | p02388 | u671760895 | 1518536450 | Python | Python | py | Runtime Error | 0 | 0 | 51 | N = input()
N = pow(N,3)
N = str(N)
print(N¥n)
| File "/tmp/tmpgk3436aj/tmp2jlowqqp.py", line 7
print(N¥n)
^
SyntaxError: invalid character '¥' (U+00A5)
| |
s272981528 | p02388 | u671760895 | 1518536470 | Python | Python | py | Runtime Error | 0 | 0 | 36 | N = input()
N = N*N*N
print(N¥n)
| File "/tmp/tmpi5ffetss/tmppqfo_a_d.py", line 5
print(N¥n)
^
SyntaxError: invalid character '¥' (U+00A5)
| |
s172607318 | p02388 | u695099631 | 1518845056 | Python | Python | py | Runtime Error | 0 | 0 | 44 | import sys
x = int(sys.argv[1])
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpv0v2zz3x/tmp8x1dotxf.py", line 2, in <module>
x = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s464540749 | p02388 | u695099631 | 1518845086 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | import sys
x = int(sys.argv[1])
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpz6w4dlh6/tmp2p3533lg.py", line 2, in <module>
x = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s005077763 | p02388 | u695099631 | 1518845368 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpr_01idjq/tmp2mhfvo_b.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s801251086 | p02388 | u117140447 | 1518949587 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | import sys
input_number = int(raw_input())
if __name__ == '__main__':
print(str(input_number ** 3))
| Traceback (most recent call last):
File "/tmp/tmp1kz55ie4/tmpjq6i_mbs.py", line 2, in <module>
input_number = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s761724302 | p02388 | u117140447 | 1518949607 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | import sys
input_number = int(raw_input())
if __name__ == '__main__':
print(str(input_number ** 3))
| Traceback (most recent call last):
File "/tmp/tmpd43gqfxo/tmptcb0x957.py", line 2, in <module>
input_number = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s255735226 | p02388 | u299231628 | 1519285445 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | n = int(input())
print(n**)
| File "/tmp/tmpafrn40g0/tmpla6wckst.py", line 2
print(n**)
^
SyntaxError: invalid syntax
| |
s565886440 | p02388 | u387507798 | 1519354190 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | print(int(input())*int(input())*int(input()))
| Traceback (most recent call last):
File "/tmp/tmpcbbqbpey/tmp0j6datc9.py", line 1, in <module>
print(int(input())*int(input())*int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s542583320 | p02388 | u920652470 | 1519359152 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | a = input()
printb int(a)**3
| File "/tmp/tmp1mpafou2/tmpld9b9zem.py", line 2
printb int(a)**3
^^^
SyntaxError: invalid syntax
| |
s942931484 | p02388 | u675201332 | 1519360535 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | # -*- coding: utf-8 -*-
"""
Created on Wed Feb 21 16:06:06 2018
@author: yusei
"""
h1=int(input())
a = h1**3
print (a)
h2=int(input())
b = h2**3
print (b)
| Traceback (most recent call last):
File "/tmp/tmphu71mfge/tmp69s8p2e1.py", line 8, in <module>
h1=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s558166714 | p02388 | u675201332 | 1519360650 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | # -*- coding: utf-8 -*-
"""
Created on Wed Feb 21 16:06:06 2018
@author: yusei
"""
h1=int(input())
a = h1**3
print (a)
h2=int(input())
b = h2**3
print (b)
| Traceback (most recent call last):
File "/tmp/tmp6h9i90wr/tmpekhjl9oz.py", line 8, in <module>
h1=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s855353313 | p02388 | u005739171 | 1519542395 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | input(x)
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpu1t6q757/tmpvbrojarf.py", line 1, in <module>
input(x)
^
NameError: name 'x' is not defined
| |
s879203796 | p02388 | u005739171 | 1519542418 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmphqbldtt7/tmppyya6pes.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s322584303 | p02388 | u581154076 | 1519821393 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | print(int(input)**3)
| Traceback (most recent call last):
File "/tmp/tmpwwakrhs_/tmpgt13zptp.py", line 1, in <module>
print(int(input)**3)
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s211656773 | p02388 | u865220118 | 1519966109 | Python | Python | py | Runtime Error | 0 | 0 | 35 | x = raw_input()
print (x * x * x)
| Traceback (most recent call last):
File "/tmp/tmpspwbwuv5/tmpdfwyrrid.py", line 1, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s123402549 | p02388 | u865220118 | 1519966235 | Python | Python | py | Runtime Error | 0 | 0 | 18 | print (pow(x,3))
| Traceback (most recent call last):
File "/tmp/tmpu94546zr/tmptabptyok.py", line 1, in <module>
print (pow(x,3))
^
NameError: name 'x' is not defined
| |
s225192246 | p02388 | u865220118 | 1519966454 | Python | Python | py | Runtime Error | 0 | 0 | 11 | pow(x,3)
| Traceback (most recent call last):
File "/tmp/tmpum11uwpj/tmpa2wis2h9.py", line 1, in <module>
pow(x,3)
^
NameError: name 'x' is not defined
| |
s341032884 | p02388 | u865220118 | 1519966651 | Python | Python | py | Runtime Error | 0 | 0 | 10 | pow(x,3)
| Traceback (most recent call last):
File "/tmp/tmpl13x0i8e/tmpyuv13bh_.py", line 1, in <module>
pow(x,3)
^
NameError: name 'x' is not defined
| |
s677721853 | p02388 | u592769330 | 1520154958 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp0d54j9kk/tmp8c86dez3.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s211495080 | p02388 | u592769330 | 1520155035 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | x=input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp0m7p51bz/tmpclv54xr3.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s167138311 | p02388 | u592769330 | 1520155158 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x=input()
print(str(x**3))
| Traceback (most recent call last):
File "/tmp/tmpfharur5t/tmp80soh1cp.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s603741871 | p02388 | u592769330 | 1520155180 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | a=input()
print(a**3)
| Traceback (most recent call last):
File "/tmp/tmp36iqgd_4/tmpaxskul_b.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s065043264 | p02388 | u770401549 | 1520502215 | Python | Python | py | Runtime Error | 0 | 0 | 26 | x = imput()
print x **= 3
| File "/tmp/tmpma5j6ao_/tmprd7kgn75.py", line 2
print x **= 3
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s592907112 | p02388 | u770401549 | 1520502382 | Python | Python | py | Runtime Error | 0 | 0 | 42 | # coding: UTF-8
x = imput()
print x **= 3
| File "/tmp/tmpffm_arlr/tmp0i3h1c_c.py", line 3
print x **= 3
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s935737220 | p02388 | u770401549 | 1520503516 | Python | Python | py | Runtime Error | 0 | 0 | 24 | x = imput()
print x**3
| File "/tmp/tmp4ncjyhzt/tmpuq6otfyb.py", line 2
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s534681794 | p02388 | u162658314 | 1520580235 | Python | Python3 | py | Runtime Error | 0 | 0 | 5 | x**3
| Traceback (most recent call last):
File "/tmp/tmpgunvkbsr/tmpr_vv95_f.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s461212739 | p02388 | u162658314 | 1520580689 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | int x = input()
print(x**3)
| File "/tmp/tmpbdsahdx3/tmpbx8dslqt.py", line 1
int x = input()
^
SyntaxError: invalid syntax
| |
s349431480 | p02388 | u031205193 | 1520618065 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | x = int(input( ))
print(x**3)
input()
| Traceback (most recent call last):
File "/tmp/tmpxbmgg536/tmpskivz4tm.py", line 1, in <module>
x = int(input( ))
^^^^^^^^
EOFError: EOF when reading a line
| |
s606893279 | p02388 | u180001441 | 1520781869 | Python | Python | py | Runtime Error | 0 | 0 | 75 | import numpy as np
def main():
x = np.array([1,100])
print(np.cube(x))
| Traceback (most recent call last):
File "/tmp/tmpy8p731ua/tmpo4lxopu2.py", line 4, in <module>
print(np.cube(x))
^^^^^^^
File "/root/miniconda3/envs/sandbox-runtime/lib/python3.11/site-packages/numpy/__init__.py", line 333, in __getattr__
raise AttributeError("module {!r} has no attribute "
AttributeError: module 'numpy' has no attribute 'cube'
| |
s937332325 | p02388 | u180001441 | 1520783018 | Python | Python | py | Runtime Error | 0 | 0 | 13 | print x ** 3
| File "/tmp/tmptqilec5c/tmp7ekuhya0.py", line 1
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s560337013 | p02388 | u962469296 | 1521032288 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | var = input()
print(var*var*var)
| Traceback (most recent call last):
File "/tmp/tmpf57jv4ls/tmppkf0690i.py", line 1, in <module>
var = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s109726899 | p02388 | u962469296 | 1521032371 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | var = input()
print(var*var*var)
| Traceback (most recent call last):
File "/tmp/tmpg9xgz6po/tmpap_u8d4j.py", line 1, in <module>
var = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s421958692 | p02388 | u507758132 | 1521094062 | Python | Python3 | py | Runtime Error | 0 | 0 | 6 | ihlkn
| Traceback (most recent call last):
File "/tmp/tmpamm_fud5/tmpcojhajp0.py", line 1, in <module>
ihlkn
NameError: name 'ihlkn' is not defined
| |
s325590794 | p02388 | u507758132 | 1521094141 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 |
x = input()
print (x^3)
| Traceback (most recent call last):
File "/tmp/tmp373a2rma/tmpepke90uu.py", line 2, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s376152712 | p02388 | u566311709 | 1521119248 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | print(input() ** 3)
| Traceback (most recent call last):
File "/tmp/tmpam21ahyx/tmpnrswkmai.py", line 1, in <module>
print(input() ** 3)
^^^^^^^
EOFError: EOF when reading a line
| |
s896471710 | p02388 | u489396453 | 1521270183 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = input()
print(x * x * x)
| Traceback (most recent call last):
File "/tmp/tmp3_b5wgxw/tmpp_lguult.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s517488440 | p02388 | u489396453 | 1521270274 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | x = input()
ans = x * x * x
print(ans)
| Traceback (most recent call last):
File "/tmp/tmpvcali7av/tmpy_mkqcg4.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s105045671 | p02388 | u227344542 | 1521447520 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpc_zw97fw/tmpne75t24v.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s888187992 | p02388 | u718625247 | 1521730630 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x=(input())
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpzsfm_kb6/tmpstceamn5.py", line 1, in <module>
x=(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s888577528 | p02388 | u865220118 | 1521779219 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | input = input('>> ')
ans = pow(input,3)
print(ans)
| Traceback (most recent call last):
File "/tmp/tmpwpwabh22/tmpfwx_qope.py", line 1, in <module>
input = input('>> ')
^^^^^^^^^^^^
EOFError: EOF when reading a line
| >> |
s468624983 | p02388 | u002193969 | 1522085850 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = input()
int(x)
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpyyw2xgjd/tmp6xxbvh1p.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s898504031 | p02388 | u002193969 | 1522085947 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | x = input()
y = int(x)
return(y**3)
| File "/tmp/tmpj60a71i8/tmp626gnlpg.py", line 3
return(y**3)
^^^^^^^^^^^^
SyntaxError: 'return' outside function
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.