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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s348419989 | p02388 | u621084859 | 1522312274 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x=int(input())
print((x)4)
| File "/tmp/tmp3hz5ut2n/tmpd1sl930_.py", line 2
print((x)4)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s003109456 | p02388 | u621084859 | 1522313613 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x=int(input())
print((x)3)
| File "/tmp/tmpq55qi1hn/tmpd7jyi0al.py", line 2
print((x)3)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s247341050 | p02388 | u621084859 | 1522313910 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | x=input()
print(x*)
| File "/tmp/tmp4celn4gy/tmpf6mtq4lp.py", line 2
print(x*)
^
SyntaxError: invalid syntax
| |
s469688933 | p02388 | u979385417 | 1522388255 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x = input()
ans = x
for i in range(1,3):
ans = ans * x
print ans
| File "/tmp/tmpq3fnlb_x/tmpvedtk4d4.py", line 5
print ans
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s529747338 | p02388 | u782670949 | 1522840692 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = input()
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpj3gwhrm9/tmpxtpclkdt.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s633516876 | p02388 | u782670949 | 1522840841 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpv3y1qmef/tmpzqzord2b.py", line 1, in <module>
print(x ** 3)
^
NameError: name 'x' is not defined
| |
s844443016 | p02388 | u244493040 | 1523182398 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print(input()**3)
| Traceback (most recent call last):
File "/tmp/tmpsdeu8k67/tmp3hh8gtzs.py", line 1, in <module>
print(input()**3)
^^^^^^^
EOFError: EOF when reading a line
| |
s308633923 | p02388 | u605098102 | 1523199942 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x=input()
y=int(x)
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpp0kx5u78/tmpg967qgbw.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s321720964 | p02388 | u781194524 | 1523327222 | Python | Python3 | py | Runtime Error | 0 | 0 | 6 | X*X*X
| Traceback (most recent call last):
File "/tmp/tmpt25bjhmp/tmp6c4aw6wi.py", line 1, in <module>
X*X*X
^
NameError: name 'X' is not defined
| |
s601866611 | p02388 | u781194524 | 1523327514 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | x
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpofmk5rlj/tmp06pzbkz6.py", line 1, in <module>
x
NameError: name 'x' is not defined
| |
s818604437 | p02388 | u781194524 | 1523327651 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | x = input()
y = x**3
print(y)
| Traceback (most recent call last):
File "/tmp/tmpflg967rg/tmpwjrg9vpe.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s786095716 | p02388 | u781194524 | 1523328827 | Python | Python | py | Runtime Error | 0 | 0 | 76 | x = raw_input()
y = map(x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print c, d
| File "/tmp/tmpfc_lwlo3/tmpf9g5zh1s.py", line 7
print c, d
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s053963540 | p02388 | u781194524 | 1523328873 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | x = raw_input().split()
y = map(int,x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print c, d
| File "/tmp/tmpjxe7y557/tmpgwqv3s75.py", line 7
print c, d
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s656727078 | p02388 | u781194524 | 1523328888 | Python | Python | py | Runtime Error | 0 | 0 | 108 | #coding: UTF-8
x = raw_input().split()
y = map(int,x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print c, d
| File "/tmp/tmpx87kdwi3/tmpwpqwkd_v.py", line 13
print c, d
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s114851982 | p02388 | u359372421 | 1523350177 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = input()
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpoo4kypoc/tmpi1svd1y9.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s733654792 | p02388 | u359372421 | 1523350280 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = input("")
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpzt5ps5t4/tmp_t7v5mdd.py", line 1, in <module>
x = input("")
^^^^^^^^^
EOFError: EOF when reading a line
| |
s898877204 | p02388 | u359372421 | 1523350462 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpg109qm77/tmpeh9i7wml.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s580047470 | p02388 | u398190047 | 1523691166 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x=input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp9perotjv/tmp0647q6iz.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s812308436 | p02388 | u165447384 | 1523804371 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = input()
print( x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpely1myvx/tmpo8ws2gha.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s054290607 | p02388 | u165447384 | 1523804444 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | x = double( input() )
print( x*x*x)
| Traceback (most recent call last):
File "/tmp/tmp_wcxhwsu/tmpd4lbsaw8.py", line 1, in <module>
x = double( input() )
^^^^^^
NameError: name 'double' is not defined
| |
s162034657 | p02388 | u165447384 | 1523804617 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | x = long( input() )
print( x*x*x)
| Traceback (most recent call last):
File "/tmp/tmp150pdzsd/tmp12kfoqx4.py", line 1, in <module>
x = long( input() )
^^^^
NameError: name 'long' is not defined
| |
s603929965 | p02388 | u415281611 | 1523868087 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x=raw_input
x*x*x
print(x)
| Traceback (most recent call last):
File "/tmp/tmpczezdlll/tmpbrfnu9rz.py", line 1, in <module>
x=raw_input
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s785798281 | p02388 | u415281611 | 1523870326 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | x=input("please enter number")
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmp3rtpoykt/tmpnqrparai.py", line 1, in <module>
x=input("please enter number")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| please enter number |
s387097965 | p02388 | u415281611 | 1523870459 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | x=input("Please Enter Nunber")
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpzh4somlw/tmplty3ratd.py", line 1, in <module>
x=input("Please Enter Nunber")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| Please Enter Nunber |
s667447252 | p02388 | u876060624 | 1523875247 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print(input()**3)
| Traceback (most recent call last):
File "/tmp/tmp01qxrqpn/tmpui0pi8g5.py", line 1, in <module>
print(input()**3)
^^^^^^^
EOFError: EOF when reading a line
| |
s849131645 | p02388 | u875523539 | 1523934742 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpysz93wvt/tmpsdn2_78e.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s267813575 | p02388 | u875523539 | 1523948480 | Python | Python | py | Runtime Error | 0 | 0 | 20 | print(x*x*x)
x=2
| File "/tmp/tmp2frzr_58/tmpp0vg3zbf.py", line 2
x=2
IndentationError: unexpected indent
| |
s426666066 | p02388 | u875523539 | 1523950441 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = input()
printt(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpgcj_36z9/tmp93vdzxa9.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s707408951 | p02388 | u875523539 | 1523950464 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = (int)input()
printt(x*x*x)
| File "/tmp/tmp46tmkhsy/tmphzbjpt7r.py", line 1
x = (int)input()
^^^^^
SyntaxError: invalid syntax
| |
s234057471 | p02388 | u831591800 | 1523954959 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpmsm7pmqw/tmpu2a7x82w.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s193171411 | p02388 | u909075105 | 1523964142 | Python | Python | py | Runtime Error | 0 | 0 | 85 | #16D8101023J 久保田凌弥 kubotarouxxx python
x=int(input())
y=x**3
print("y")
| Traceback (most recent call last):
File "/tmp/tmp7t8skf30/tmpzo4pus4z.py", line 3, in <module>
x=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s213498656 | p02388 | u909075105 | 1523964156 | Python | Python | py | Runtime Error | 0 | 0 | 83 | #16D8101023J 久保田凌弥 kubotarouxxx python
x=int(input())
y=x**3
print(y)
| Traceback (most recent call last):
File "/tmp/tmpt0x6xrdv/tmpd7do_9eu.py", line 3, in <module>
x=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s224388416 | p02388 | u909075105 | 1523964206 | Python | Python | py | Runtime Error | 0 | 0 | 85 | #16D8101023J 久保田凌弥 kubotarouxxx python
x=int(input(""))
y=x**3
print(y)
| Traceback (most recent call last):
File "/tmp/tmplnk49cfb/tmpmk2qosh9.py", line 3, in <module>
x=int(input(""))
^^^^^^^^^
EOFError: EOF when reading a line
| |
s208693351 | p02388 | u909075105 | 1523964222 | Python | Python | py | Runtime Error | 0 | 0 | 86 | # 16D8101023J 久保田凌弥 kubotarouxxx python
x=int(input(""))
y=x**3
print(y)
| Traceback (most recent call last):
File "/tmp/tmp6aaaqq_1/tmplsry7g2g.py", line 3, in <module>
x=int(input(""))
^^^^^^^^^
EOFError: EOF when reading a line
| |
s484176287 | p02388 | u485986915 | 1524129211 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpzd08wmlx/tmpzubywp2j.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s486721920 | p02388 | u485986915 | 1524129242 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | y = x^3
print(y)
| Traceback (most recent call last):
File "/tmp/tmpqobbuxh3/tmpl8g_dq94.py", line 1, in <module>
y = x^3
^
NameError: name 'x' is not defined
| |
s238138625 | p02388 | u648117624 | 1524153698 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | int x
print(x*x*x)
| File "/tmp/tmpix456a2d/tmpb_7b2lw5.py", line 1
int x
^
SyntaxError: invalid syntax
| |
s570752698 | p02388 | u648117624 | 1524153727 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpp3xvghnt/tmp4al6mf69.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s244284699 | p02388 | u648117624 | 1524153755 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = int x
print(x*x*x)
| File "/tmp/tmpmjvhgml6/tmp9cltvny5.py", line 1
x = int x
^
SyntaxError: invalid syntax
| |
s172152516 | p02388 | u648117624 | 1524153899 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpq1jj_ia_/tmpzbriv724.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s871814227 | p02388 | u328199937 | 1524188288 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | a = input()
print(a*a*a)
| Traceback (most recent call last):
File "/tmp/tmpb_r9v617/tmpnba2ojmw.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s467510030 | p02388 | u485986915 | 1524213324 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | if 1<=x<=100 :
s=x*x*x
print(s)
| Traceback (most recent call last):
File "/tmp/tmpgorimg7n/tmptf_00st4.py", line 1, in <module>
if 1<=x<=100 :
^
NameError: name 'x' is not defined
| |
s842588715 | p02388 | u485986915 | 1524213423 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x =(input(x))
s=x*x*x
print(s)
| Traceback (most recent call last):
File "/tmp/tmp0g8h2v7b/tmpk1cn2xns.py", line 1, in <module>
x =(input(x))
^
NameError: name 'x' is not defined
| |
s261254242 | p02388 | u485986915 | 1524213609 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x =input()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmp3ouef1aw/tmp86ftxtyv.py", line 1, in <module>
x =input()
^^^^^^^
EOFError: EOF when reading a line
| |
s270216668 | p02388 | u074747865 | 1524471793 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x=int(input()
print(x**3)
| File "/tmp/tmpot3obxlv/tmp9mzsn7w8.py", line 1
x=int(input()
^
SyntaxError: '(' was never closed
| |
s033885751 | p02388 | u836133197 | 1524486493 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a = input()
print("{}".format(a*a*a))
| Traceback (most recent call last):
File "/tmp/tmp5nyr4k22/tmpytymizf8.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s038857323 | p02388 | u836133197 | 1524486528 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | a = input()
print("%d", a*a*a)
| Traceback (most recent call last):
File "/tmp/tmp5gkmfg0i/tmp356173zm.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s001374657 | p02388 | u836133197 | 1524486558 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | a = input()
a = a*a*a
print(a)
| Traceback (most recent call last):
File "/tmp/tmpz8bvi1br/tmp1l7a735k.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s465745439 | p02388 | u533059000 | 1524540424 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | a = input()
print(a*a*a)
| Traceback (most recent call last):
File "/tmp/tmpii3_fjo_/tmp0git0ry3.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s700717907 | p02388 | u533059000 | 1524540466 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | a = input()
print(a * a * a)
| Traceback (most recent call last):
File "/tmp/tmpa0hv_jb7/tmp4s0mx1_7.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s766621121 | p02388 | u533059000 | 1524540534 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = input()
print(x * x* x)
| Traceback (most recent call last):
File "/tmp/tmpqtuo8gbt/tmpkbj97vy6.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s851635058 | p02388 | u533059000 | 1524540605 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | a = input()
print(a*a*a)
print()
| Traceback (most recent call last):
File "/tmp/tmpa0j5972d/tmppnefzq_7.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s949430703 | p02388 | u533059000 | 1524541017 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | a = input()
print(a**3)
| Traceback (most recent call last):
File "/tmp/tmpa1t_j42s/tmp44svyebk.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s086716031 | p02388 | u533059000 | 1524541039 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 |
a = input()
print(a**3)
print()
| Traceback (most recent call last):
File "/tmp/tmpirw3482x/tmpx9m8b0oy.py", line 3, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s007298926 | p02388 | u533059000 | 1524541124 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | a = 0
a = input()
print(a**3)
| Traceback (most recent call last):
File "/tmp/tmp_9oz_spu/tmp6wxya6pn.py", line 2, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s379099581 | p02388 | u166841004 | 1524546586 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | x=2
print x**3
| File "/tmp/tmpac5u8rfi/tmp2s_0ovyd.py", line 2
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s734673888 | p02388 | u166841004 | 1524546958 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x=input()
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpakpynols/tmpzdxesykn.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s260337414 | p02388 | u166841004 | 1524546968 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x=input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp9r_pwgie/tmp00fq2jzz.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s257611309 | p02388 | u206015646 | 1524612101 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp_e50iymn/tmp352ct030.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s633356224 | p02388 | u702242181 | 1524621110 | Python | Python | py | Runtime Error | 0 | 0 | 16 | a=x*x*x
print a
| File "/tmp/tmpalqyn3ui/tmpslvkyr9s.py", line 2
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s807346881 | p02388 | u702242181 | 1524621284 | Python | Python | py | Runtime Error | 0 | 0 | 30 | x=imput()
y=x**3
print int(y)
| File "/tmp/tmpwuqzxo18/tmpw22hjcrb.py", line 3
print int(y)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s842139930 | p02388 | u702242181 | 1524621371 | Python | Python | py | Runtime Error | 0 | 0 | 34 | x=imput()
y=pow(x,3)
print int(y)
| File "/tmp/tmp0tj3lvwp/tmpsqb5t5ep.py", line 3
print int(y)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s746860790 | p02388 | u702242181 | 1524621404 | Python | Python | py | Runtime Error | 0 | 0 | 43 | def main():
x=imput()
y=pow(x,3)
print (y)
| File "/tmp/tmphs_ekg7l/tmpgehzcgw9.py", line 2
x=imput()
^
IndentationError: expected an indented block after function definition on line 1
| |
s183165465 | p02388 | u884342371 | 1524795936 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(X**3)
| Traceback (most recent call last):
File "/tmp/tmp_ovh9bbr/tmpa1j_4208.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s694894478 | p02388 | u884342371 | 1524795947 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpw55wa5ss/tmpzb8ax607.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s803578472 | p02388 | u884342371 | 1524795975 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
y = x*x*x
print(y)
| Traceback (most recent call last):
File "/tmp/tmp9r65enym/tmpb51e3gsk.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s510773714 | p02388 | u781194524 | 1524810971 | Python | Python | py | Runtime Error | 0 | 0 | 20 | input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpoif4meh8/tmpogzzvozl.py", line 1, in <module>
input()
EOFError: EOF when reading a line
| |
s404918029 | p02388 | u781194524 | 1524811051 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | input(x)
print(int(x**3))
| Traceback (most recent call last):
File "/tmp/tmpx7cbb2l5/tmpmzw2cktj.py", line 1, in <module>
input(x)
^
NameError: name 'x' is not defined
| |
s466842823 | p02388 | u406434162 | 1525072829 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print(imput()**3)
| Traceback (most recent call last):
File "/tmp/tmp1vmg60gj/tmp6g6syj3r.py", line 1, in <module>
print(imput()**3)
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s647900180 | p02388 | u406434162 | 1525072877 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = imput()
print(x*x*x)
| Traceback (most recent call last):
File "/tmp/tmps6bl276v/tmp11kefvcq.py", line 1, in <module>
x = imput()
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s990071935 | p02388 | u215335591 | 1525329139 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input
print (x*x*x)
| Traceback (most recent call last):
File "/tmp/tmp7ztsg3ns/tmpboci9bo4.py", line 2, in <module>
print (x*x*x)
~^~
TypeError: unsupported operand type(s) for *: 'builtin_function_or_method' and 'builtin_function_or_method'
| |
s652136831 | p02388 | u215335591 | 1525329161 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = input
print (x*x*x,"\n")
| Traceback (most recent call last):
File "/tmp/tmphgm19sij/tmpn9i9r0b4.py", line 2, in <module>
print (x*x*x,"\n")
~^~
TypeError: unsupported operand type(s) for *: 'builtin_function_or_method' and 'builtin_function_or_method'
| |
s426495399 | p02388 | u215335591 | 1525329233 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
print (x*x*x,"\n")
| Traceback (most recent call last):
File "/tmp/tmph2_fenzb/tmpwhipnufd.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s910544423 | p02388 | u215335591 | 1525329271 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = input()
print (x*x*x)
| Traceback (most recent call last):
File "/tmp/tmpsfxjefz2/tmpejganosc.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s590064683 | p02388 | u215335591 | 1525329404 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = input()
y = x*x*x
print (y)
| Traceback (most recent call last):
File "/tmp/tmpk2hz8nmt/tmp35385d1i.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s033041109 | p02388 | u215335591 | 1525329434 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | x = input()
y = x*x*x
print (y)
print ("\n")
| Traceback (most recent call last):
File "/tmp/tmpau7hlq_y/tmp2mpmg6jx.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s314503322 | p02388 | u587821863 | 1525351393 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmpmzw52hp3/tmpilv44uy8.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s516531505 | p02388 | u979728718 | 1525411341 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | input = input()
print(input**3)
| Traceback (most recent call last):
File "/tmp/tmpvy5lwq_0/tmpwt_326c8.py", line 1, in <module>
input = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s344624680 | p02388 | u406434162 | 1525426355 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = import()
print(x ** 3)
| File "/tmp/tmprdmq9pgd/tmp2uky8krb.py", line 1
x = import()
^^^^^^
SyntaxError: invalid syntax
| |
s284265388 | p02388 | u406434162 | 1525426472 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = int(import())
print(x ** 3)
| File "/tmp/tmp49xv6sbt/tmp0tf1zzuo.py", line 1
x = int(import())
^^^^^^
SyntaxError: invalid syntax
| |
s002751741 | p02388 | u406434162 | 1525426485 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | x = (int(import()))
print(x ** 3)
| File "/tmp/tmpton_8klp/tmpowtmmcp7.py", line 1
x = (int(import()))
^^^^^^
SyntaxError: invalid syntax
| |
s487821846 | p02388 | u297826157 | 1526363453 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print x*x*x
| File "/tmp/tmpau3vflrv/tmpxko4kdsn.py", line 2
print x*x*x
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s729874677 | p02388 | u890641984 | 1526451760 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = int(3)
x^3 = y
print ("y")
| File "/tmp/tmpspdq0zwu/tmp6ytld048.py", line 2
x^3 = y
^^^
SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?
| |
s076184466 | p02388 | u890641984 | 1526451913 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | x = 3
print x^3
| File "/tmp/tmpsildjaxv/tmp06mv04fu.py", line 2
print x^3
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s752164616 | p02388 | u890641984 | 1526452490 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | x = int(input(3))
x ** 3 = y
print
| File "/tmp/tmpafp6pj0c/tmps731ebag.py", line 2
x ** 3 = y
^^^^^^
SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?
| |
s806971908 | p02388 | u580559697 | 1526525708 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | for x range(1, 101):
print x ** 2
| File "/tmp/tmpi36amx2c/tmpvy8pyr7w.py", line 1
for x range(1, 101):
^^^^^
SyntaxError: invalid syntax
| |
s488951713 | p02388 | u199911712 | 1526553154 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | x = input().strip()
x = x * x * x
print("%d" % x)
| Traceback (most recent call last):
File "/tmp/tmp6m7n5v0g/tmpuvdle5b3.py", line 1, in <module>
x = input().strip()
^^^^^^^
EOFError: EOF when reading a line
| |
s966441060 | p02388 | u527389300 | 1526569348 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = input
x = x*x*x
print(x)
| Traceback (most recent call last):
File "/tmp/tmpf0w0hdr6/tmpko8t3wep.py", line 2, in <module>
x = x*x*x
~^~
TypeError: unsupported operand type(s) for *: 'builtin_function_or_method' and 'builtin_function_or_method'
| |
s114927613 | p02388 | u527389300 | 1526569365 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = input
x = x^3
print(x)
| Traceback (most recent call last):
File "/tmp/tmpb9ym60ku/tmpeu0rqwul.py", line 2, in <module>
x = x^3
~^~
TypeError: unsupported operand type(s) for ^: 'builtin_function_or_method' and 'int'
| |
s644847128 | p02388 | u527389300 | 1526569393 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = input()
x = x^3
print(x)
| Traceback (most recent call last):
File "/tmp/tmpioqeuxsm/tmp8178ba_q.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s864029761 | p02388 | u527389300 | 1526569402 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
x = x*x*x
print(x)
| Traceback (most recent call last):
File "/tmp/tmpzxx1ipdk/tmpmwg1ymoo.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s622334075 | p02388 | u904173900 | 1526725638 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | input(num)
multiple = num * num * num
print(multiple)
| Traceback (most recent call last):
File "/tmp/tmpiwggjr7_/tmp74bd5ne2.py", line 1, in <module>
input(num)
^^^
NameError: name 'num' is not defined. Did you mean: 'sum'?
| |
s050340944 | p02388 | u637927800 | 1526844123 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | x = input()
if x <= 100 and x>=0:
print(x^3)
| Traceback (most recent call last):
File "/tmp/tmpwl2ou5st/tmpv5yv3afl.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s838737483 | p02388 | u637927800 | 1526844452 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | while True:
x = input('x=:')
if x <= 100 and x >= 1:
print(x ** 3)
break
| Traceback (most recent call last):
File "/tmp/tmp00qho2lo/tmp_4ppsaxx.py", line 2, in <module>
x = input('x=:')
^^^^^^^^^^^^
EOFError: EOF when reading a line
| x=: |
s659658737 | p02388 | u637927800 | 1526844839 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | print(x=input())
if (x <= 100) and (x >= 1):
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpl7ne3bup/tmpn7vfs5qn.py", line 1, in <module>
print(x=input())
^^^^^^^
EOFError: EOF when reading a line
| |
s550155338 | p02388 | u637927800 | 1526844870 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | print(x=input())
print(x ** 3)
| Traceback (most recent call last):
File "/tmp/tmpl6u8r_pq/tmppt4inlys.py", line 1, in <module>
print(x=input())
^^^^^^^
EOFError: EOF when reading a line
| |
s407782660 | p02388 | u637927800 | 1526845013 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | print(x = int(input())
if (x >= 1) and (x <= 100):
print( x ** 3)
| File "/tmp/tmp0jxz543y/tmp1axz1xq3.py", line 1
print(x = int(input())
^
SyntaxError: '(' was never closed
| |
s671112801 | p02388 | u637927800 | 1526845065 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | print(x = int(input())
print(x ** 3)
| File "/tmp/tmpniwhs6iv/tmp5lv8ip98.py", line 1
print(x = int(input())
^
SyntaxError: '(' was never closed
| |
s996581497 | p02388 | u098047375 | 1526982764 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x**3)
| Traceback (most recent call last):
File "/tmp/tmp9j67m_d5/tmpmma13e2q.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s094975443 | p02388 | u380973049 | 1527059312 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print (x^3)
| Traceback (most recent call last):
File "/tmp/tmph6fczj68/tmpd_d011gt.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.