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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s900631343 | p02388 | u362094064 | 1473314398 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | x = input()
y = x ** 3
print int(y) | File "/tmp/tmp10chedbi/tmpymkycs9k.py", line 5
print int(y)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s346055562 | p02388 | u362094064 | 1473315596 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | x = input()
y = x ** 3
print int(y) | File "/tmp/tmph69dl_np/tmpj_gl5e8q.py", line 5
print int(y)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s462009662 | p02388 | u362094064 | 1473315663 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | 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/tmp_dyxx8sm/tmp60p2t9vo.py", line 11
print c, d
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s884039756 | p02388 | u362094064 | 1473315860 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | x = input().split()
y = map(int, x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print c, d | File "/tmp/tmpt2ezjz3v/tmpcvzfcl47.py", line 11
print c, d
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s740156902 | p02388 | u362094064 | 1473319141 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | x = input('>')
y = x**3
print int(y) | File "/tmp/tmp7d3x1c0o/tmp1zfimj09.py", line 5
print int(y)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s153043574 | p02388 | u302561071 | 1473477341 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a = raw_input()
a = a * a * a
print(a) | Traceback (most recent call last):
File "/tmp/tmpg81w_3x2/tmpppo2_d2x.py", line 1, in <module>
a = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s736446158 | p02388 | u302561071 | 1473477425 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | a = input()
a = a * a * a
print(a) | Traceback (most recent call last):
File "/tmp/tmpvmswb6ra/tmp0cksjayp.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s978589292 | p02388 | u302561071 | 1473477666 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | N = input()
print(N*N*N) | Traceback (most recent call last):
File "/tmp/tmpxmgqidx3/tmpzj31_5k5.py", line 1, in <module>
N = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s995535692 | p02388 | u295105954 | 1473920438 | Python | Python | py | Runtime Error | 0 | 0 | 26 | x = raw_input()
print x**3 | File "/tmp/tmp5bfk6wid/tmpjb6_7ekk.py", line 2
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s154908301 | p02388 | u295105954 | 1473920590 | Python | Python | py | Runtime Error | 0 | 0 | 26 | x = raw_input()
print x**3 | File "/tmp/tmpar84pve5/tmppqzrcgua.py", line 2
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s654357960 | p02388 | u135273382 | 1473925339 | Python | Python | py | Runtime Error | 0 | 0 | 4 | x**3 | Traceback (most recent call last):
File "/tmp/tmplprik1ut/tmp5z4c8q47.py", line 1, in <module>
x**3
^
NameError: name 'x' is not defined
| |
s811629220 | p02388 | u135273382 | 1473925362 | Python | Python | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmp4fff2mwm/tmpfhmm7l_e.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s296063862 | p02388 | u135273382 | 1473925457 | Python | Python | py | Runtime Error | 0 | 0 | 20 | x = raw_input()
x**3 | Traceback (most recent call last):
File "/tmp/tmpx0bybtgr/tmp6ei1oz6y.py", line 1, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s842223287 | p02388 | u135273382 | 1473925495 | Python | Python | py | Runtime Error | 0 | 0 | 25 | x=raw_input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpgzpq9jue/tmpanp8g13_.py", line 1, in <module>
x=raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s019774163 | p02388 | u822442916 | 1474004805 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmp51tissm2/tmpr2l7shqr.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s483440339 | p02388 | u822442916 | 1474004902 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmpc9p41x6f/tmpuza8iwfh.py", line 1, in <module>
print(x*x*x)
^
NameError: name 'x' is not defined
| |
s426230891 | p02388 | u822442916 | 1474005484 | Python | Python3 | py | Runtime Error | 0 | 0 | 9 | x???x???x | File "/tmp/tmpsdzqtqyn/tmph3nlha8d.py", line 1
x???x???x
^
SyntaxError: invalid syntax
| |
s728367954 | p02388 | u822442916 | 1474005525 | Python | Python3 | py | Runtime Error | 0 | 0 | 9 | x???x???x | File "/tmp/tmpqkvygy3n/tmpmwznez1y.py", line 1
x???x???x
^
SyntaxError: invalid syntax
| |
s800274108 | p02388 | u822442916 | 1474006748 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | if ('1<=x<=100'):
print (x*x*x) | Traceback (most recent call last):
File "/tmp/tmpwgurd0t7/tmpb0sgywdk.py", line 2, in <module>
print (x*x*x)
^
NameError: name 'x' is not defined
| |
s146763795 | p02388 | u216804574 | 1474037388 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | pow(input(), 3) | Traceback (most recent call last):
File "/tmp/tmp0826xspg/tmpeoa5f_qp.py", line 1, in <module>
pow(input(), 3)
^^^^^^^
EOFError: EOF when reading a line
| |
s910074486 | p02388 | u111053265 | 1474520997 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | x = input()
out = x**3
print(out) | Traceback (most recent call last):
File "/tmp/tmp49do0rol/tmpia9uczxl.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s435672711 | p02388 | u135273382 | 1474780530 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp_52a9lk6/tmprnfyojnn.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s077389510 | p02388 | u135273382 | 1474780566 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | x=input()
print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmp5wpk0ejn/tmp_rigfoj_.py", line 1, in <module>
x=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s556876794 | p02388 | u707135573 | 1474885037 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | num = sys.stdin.readline()
print(num**3) | Traceback (most recent call last):
File "/tmp/tmpos0770ie/tmpu1agczt0.py", line 1, in <module>
num = sys.stdin.readline()
^^^
NameError: name 'sys' is not defined
| |
s807153320 | p02388 | u707135573 | 1474885093 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | num = sys.stdin.readlines()
print(int(num)**3) | Traceback (most recent call last):
File "/tmp/tmpk4urdov4/tmp8o6b98fe.py", line 1, in <module>
num = sys.stdin.readlines()
^^^
NameError: name 'sys' is not defined
| |
s257544721 | p02388 | u838759969 | 1475146441 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpan19isfu/tmpa7qp3e22.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s289380677 | p02388 | u838759969 | 1475146519 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = int(raw_input())
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp87ftk8x9/tmpb5m1m8bl.py", line 1, in <module>
x = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s306686862 | p02388 | u419760455 | 1475219211 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | num = input()
print(num**3) | Traceback (most recent call last):
File "/tmp/tmpn_ggjdd2/tmpt2akexyw.py", line 1, in <module>
num = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s582055845 | p02388 | u419760455 | 1475219223 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | num = input()
print(num*num*num) | Traceback (most recent call last):
File "/tmp/tmp1wjxlaw0/tmp0f0h_7lt.py", line 1, in <module>
num = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s614645405 | p02388 | u419760455 | 1475219240 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | num = input().split()
print(num*num*num) | Traceback (most recent call last):
File "/tmp/tmp418f4g7v/tmp4eyxkgtv.py", line 1, in <module>
num = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s556407899 | p02388 | u494314211 | 1475342610 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | a=input()
print(a*a*a) | Traceback (most recent call last):
File "/tmp/tmp9wiorwdv/tmpdtw6iqyl.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s827555466 | p02388 | u352273463 | 1475412261 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | a=input()
print(a**3) | Traceback (most recent call last):
File "/tmp/tmpl6dy2eiu/tmppu_wu0q8.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s659667996 | p02388 | u352273463 | 1475412479 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a=input()
print(a**3)
if __name__ == "__main__":
sys.exit(main()) | Traceback (most recent call last):
File "/tmp/tmpd2u_wrq4/tmp8p6mafo2.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s434959829 | p02388 | u352273463 | 1475412554 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a=input()
print(a**3)
sys.exit(main()) | Traceback (most recent call last):
File "/tmp/tmp59lw7v81/tmpwtw89wx9.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s884719766 | p02388 | u352273463 | 1475412713 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | a=input()
print(a**3)
sys.exit() | Traceback (most recent call last):
File "/tmp/tmph91qek5r/tmp5o3geo1_.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s618188293 | p02388 | u226541377 | 1476358545 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | number = input()
print(number **3) | Traceback (most recent call last):
File "/tmp/tmpbcmb50kl/tmp1z6axd5i.py", line 1, in <module>
number = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s574817634 | p02388 | u226541377 | 1476358640 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | number = raw_input()
print(number **3) | Traceback (most recent call last):
File "/tmp/tmpn_rrhw_k/tmpcmwrjkwp.py", line 1, in <module>
number = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s189028174 | p02388 | u226541377 | 1476359582 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | print(type(int(input()))**3) | Traceback (most recent call last):
File "/tmp/tmp9ntynk1x/tmpxi6_i9hp.py", line 1, in <module>
print(type(int(input()))**3)
^^^^^^^
EOFError: EOF when reading a line
| |
s554806256 | p02388 | u500396695 | 1476629500 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | a = x * x * x
print(a) | Traceback (most recent call last):
File "/tmp/tmpzpd72qpb/tmp8ki4qzdx.py", line 1, in <module>
a = x * x * x
^
NameError: name 'x' is not defined
| |
s000167344 | p02388 | u500396695 | 1476630580 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
a = x ** 3
print(a) | Traceback (most recent call last):
File "/tmp/tmpp6zn674_/tmp3wejotf4.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s590727724 | p02388 | u500396695 | 1476630654 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = input()
a = x ** 3
print (a) | Traceback (most recent call last):
File "/tmp/tmp2uocd8bh/tmpsr4z7ab5.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s415700375 | p02388 | u500396695 | 1476630698 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = input()
a = x ** 3
print int(a) | File "/tmp/tmpg8it_am1/tmph8e09pgc.py", line 3
print int(a)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s730277194 | p02388 | u996758922 | 1476832744 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print (x**3) | Traceback (most recent call last):
File "/tmp/tmpipn2e4cl/tmpwg4umoev.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s587739161 | p02388 | u286768184 | 1476880106 | Python | Python3 | py | Runtime Error | 0 | 0 | 177 | # -*- coding: utf-8 -*-
import sys
import math
def main():
argNum = int(sys.argv[1])
intRes = int(math.pow(argNum, 3))
print(intRes)
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmp8s1bz8h5/tmp553y9eqt.py", line 12, in <module>
main()
File "/tmp/tmp8s1bz8h5/tmp553y9eqt.py", line 7, in main
argNum = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s495958238 | p02388 | u286768184 | 1476880174 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | # -*- coding: utf-8 -*-
import sys
def main():
argNum = int(sys.argv[1])
print(intRes*intRes*intRes)
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmpl_hx_v85/tmpfd927dd1.py", line 10, in <module>
main()
File "/tmp/tmpl_hx_v85/tmpfd927dd1.py", line 6, in main
argNum = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s275151138 | p02388 | u286768184 | 1476880275 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | # -*- coding: utf-8 -*-
import sys
import math
def main():
argNum = int(sys.argv[1])
print(int(math.pow(argNum,3)))
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmpn4wmhfrn/tmpktgavi89.py", line 11, in <module>
main()
File "/tmp/tmpn4wmhfrn/tmpktgavi89.py", line 7, in main
argNum = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s757951823 | p02388 | u286768184 | 1476880371 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | # -*- coding: utf-8 -*-
import sys
import math
def main():
argNum = int(sys.argv[1])
print(int(math.pow(argNum,3)))
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmp9ndx3tmj/tmpffok0oni.py", line 11, in <module>
main()
File "/tmp/tmp9ndx3tmj/tmpffok0oni.py", line 7, in main
argNum = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s588598994 | p02388 | u286768184 | 1476880493 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import sys
import math
getNum = int(sys.argv[1])
print(int(math.pow(argNum,3))) | Traceback (most recent call last):
File "/tmp/tmpiyi28bzd/tmp90iye0r2.py", line 4, in <module>
getNum = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s062004275 | p02388 | u286768184 | 1476880657 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | import sys
argNum = sys.argv[1]
print(argNum*argNum*argNum) | Traceback (most recent call last):
File "/tmp/tmp9_clm8qm/tmpkripprs0.py", line 3, in <module>
argNum = sys.argv[1]
~~~~~~~~^^^
IndexError: list index out of range
| |
s712655534 | p02388 | u286768184 | 1476880734 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | import sys
print(sys.arg[1]) | Traceback (most recent call last):
File "/tmp/tmpz2a50ivo/tmpb9_7j0re.py", line 3, in <module>
print(sys.arg[1])
^^^^^^^
AttributeError: module 'sys' has no attribute 'arg'. Did you mean: 'argv'?
| |
s078613207 | p02388 | u831244171 | 1477452403 | Python | Python | py | Runtime Error | 0 | 0 | 95 | a = input("x")
a = a ** 3
print("{}".format(a))
b = input("y")
b = b **3
print("{}".format(b)) | Traceback (most recent call last):
File "/tmp/tmpon36u_p6/tmp_azjqpqa.py", line 1, in <module>
a = input("x")
^^^^^^^^^^
EOFError: EOF when reading a line
| x |
s861201310 | p02388 | u831244171 | 1477453095 | Python | Python | py | Runtime Error | 0 | 0 | 199 | a = input("a")
a = a **3
print("{}\n1".format(a))
a = input("a")
a = a **3
print("{}\n1".format(a))
a = input("a")
a = a **3
print("{}\n1".format(a))
a = input("a")
a = a **3
print("{}\n1".format(a)) | Traceback (most recent call last):
File "/tmp/tmpnmemgeck/tmp1th6gryb.py", line 1, in <module>
a = input("a")
^^^^^^^^^^
EOFError: EOF when reading a line
| a |
s493032703 | p02388 | u831244171 | 1477469769 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | x = input()
x = x **3
print(int(x)) | Traceback (most recent call last):
File "/tmp/tmpmyrfm7xn/tmp7zwfgcvp.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s424622271 | p02388 | u831244171 | 1477469789 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = input()
x = x **3
print int(x) | File "/tmp/tmpg34_2a3e/tmpmha71soe.py", line 4
print int(x)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s965487783 | p02388 | u236295012 | 1477492169 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = input()
print(int(x**3)) | Traceback (most recent call last):
File "/tmp/tmpqduizvzx/tmpbjzhpfai.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s693565404 | p02388 | u236295012 | 1477493128 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | while True:
x = input()
if int(x) > 100 or int(x) < 1:
continue
print(int(x)**3) | Traceback (most recent call last):
File "/tmp/tmpnaw6q_gc/tmpi_y3zf1k.py", line 2, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s232270891 | p02388 | u976860528 | 1477665164 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | print(input()*input()*input()) | Traceback (most recent call last):
File "/tmp/tmpx33xr9e4/tmpyb0kexeq.py", line 1, in <module>
print(input()*input()*input())
^^^^^^^
EOFError: EOF when reading a line
| |
s734265095 | p02388 | u976860528 | 1477665191 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmpkc3kf4uf/tmp97vtjms8.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s694963412 | p02388 | u517118008 | 1477681862 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input();
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp3tknu9km/tmpxjg7hf5p.py", line 1, in <module>
x = input();
^^^^^^^
EOFError: EOF when reading a line
| |
s362977665 | p02388 | u517118008 | 1477681893 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = input();
print(x*x*x); | Traceback (most recent call last):
File "/tmp/tmpyddlvjig/tmp0uxmf_x3.py", line 1, in <module>
x = input();
^^^^^^^
EOFError: EOF when reading a line
| |
s153297044 | p02388 | u546285759 | 1478593838 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmpbvd3ihhi/tmps5cl4fom.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s414381529 | p02388 | u106285852 | 1478699824 | Python | Python3 | py | Runtime Error | 0 | 0 | 145 | import sys
arg1 = int(sys.argv[1])
#else:
ret = arg1
oldVal = arg1
for cnt in range(arg1-1):
ret2 = ret * oldVal
ret = ret2
print(ret) | Traceback (most recent call last):
File "/tmp/tmpcz5qmr_m/tmpxinigg_1.py", line 3, in <module>
arg1 = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s326559813 | p02388 | u326248180 | 1478755365 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | import sys
num = sys.stdin.readline()
print(num**num) | Traceback (most recent call last):
File "/tmp/tmpn4dvygkn/tmpayer1bo8.py", line 3, in <module>
print(num**num)
~~~^^~~~
TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'str'
| |
s436724098 | p02388 | u326248180 | 1478755402 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | import sys
num = sys.stdin.readline()
print(num**3) | Traceback (most recent call last):
File "/tmp/tmp2xnv_aad/tmptmwc3rxu.py", line 3, in <module>
print(num**3)
~~~^^~
TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'
| |
s025540071 | p02388 | u326248180 | 1478755445 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | num = input()
print(num**3) | Traceback (most recent call last):
File "/tmp/tmpf5na3mjl/tmpkdttirl1.py", line 1, in <module>
num = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s855758932 | p02388 | u326248180 | 1478755456 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | num = input()
print(num*num*num) | Traceback (most recent call last):
File "/tmp/tmp9h_xdp6u/tmpjfmaciwi.py", line 1, in <module>
num = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s784373105 | p02388 | u854978981 | 1479040038 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x*x*x) | Traceback (most recent call last):
File "/tmp/tmpwmm6dd3d/tmp3p3ld00d.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s303999302 | p02388 | u509389533 | 1479392159 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = input(3)
y = x ** 3
print(y) | Traceback (most recent call last):
File "/tmp/tmp5g7vk9pt/tmpfvy61vhj.py", line 1, in <module>
x = input(3)
^^^^^^^^
EOFError: EOF when reading a line
| 3 |
s750819380 | p02388 | u509389533 | 1479443727 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) | Traceback (most recent call last):
File "/tmp/tmpmfudr50u/tmpgmr6uvoz.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s418095897 | p02388 | u433605272 | 1479886569 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | X = input(2)
print(X**3) | File "/tmp/tmp08n115w4/tmp8n4h_6dj.py", line 2
print(X**3)
IndentationError: unexpected indent
| |
s460996720 | p02388 | u433605272 | 1479886648 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = input(2)
print(x**3) | File "/tmp/tmpij28hi4h/tmpduesw8um.py", line 2
print(x**3)
IndentationError: unexpected indent
| |
s929238204 | p02388 | u433605272 | 1479887983 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | x = input(2)
y = x**3
print(y) | File "/tmp/tmputirnp83/tmp_pmw978h.py", line 5
print(y)
IndentationError: unexpected indent
| |
s783618942 | p02388 | u433605272 | 1479954217 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = input()
y = x**3
print int(y) | File "/tmp/tmp56b0motk/tmpe82wi6qy.py", line 5
print int(y)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s515763621 | p02388 | u433605272 | 1479954377 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x=input(2)
y = x**3
print(y) | File "/tmp/tmpxeef9zw5/tmpfhe2g1n1.py", line 3
print(y)
IndentationError: unexpected indent
| |
s823928969 | p02388 | u433605272 | 1479954692 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x = 2
print(x**3) | File "/tmp/tmpz_iaqrhh/tmpvq89yk90.py", line 2
print(x**3)
IndentationError: unexpected indent
| |
s622904858 | p02388 | u433605272 | 1479992952 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print input(2)**3 | File "/tmp/tmpl42z80eo/tmp94m8mwka.py", line 1
print input(2)**3
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s958551277 | p02388 | u433605272 | 1479993024 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print input(2)**3 | File "/tmp/tmpwn676mus/tmpwaqf3goy.py", line 1
print input(2)**3
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s281060754 | p02388 | u104931506 | 1480177504 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmpl4gc3axa/tmpz3_x5jln.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s826977349 | p02388 | u353258800 | 1480222030 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | public class Main{
public static void main(String[] args){
int x = 1;
System.out.println(x * x * x);
}
} | File "/tmp/tmptskse9pv/tmp3b3zznor.py", line 1
public class Main{
^^^^^
SyntaxError: invalid syntax
| |
s300208104 | p02388 | u497195381 | 1480229508 | Python | Python | py | Runtime Error | 0 | 0 | 29 | a = raw_input()
print(a*a*a) | Traceback (most recent call last):
File "/tmp/tmpttq8cbfy/tmp7slljy8w.py", line 1, in <module>
a = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s658533501 | p02388 | u156024720 | 1480249044 | Python | Python3 | py | Runtime Error | 0 | 0 | 238 | x = input("1??\???100??\????????´??°?????\?????????????????????: ")
if (x < 1) or (x > 100):
while (x < 1) and (x > 100):
x = input("??????????????\?????????????????????: ")
else:
num = x * x * x
print(num, end="\n") | Traceback (most recent call last):
File "/tmp/tmp92ouxn0_/tmp584h4maj.py", line 1, in <module>
x = input("1??\???100??\????????´??°?????\?????????????????????: ")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| 1??\???100??\????????´??°?????\?????????????????????: |
s738354275 | p02388 | u156024720 | 1480249212 | Python | Python3 | py | Runtime Error | 0 | 0 | 224 | x = input("1??\???100??\????????´??°?????\?????????????????????: ")
while (x < 1) and (x > 100):
if (x < 1) or (x > 100):
x = input("??????????????\?????????????????????: ")
num = x * x * x
print(num, end="\n") | Traceback (most recent call last):
File "/tmp/tmp_ixwzpgn/tmp2ns7uztp.py", line 1, in <module>
x = input("1??\???100??\????????´??°?????\?????????????????????: ")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| 1??\???100??\????????´??°?????\?????????????????????: |
s578881180 | p02388 | u156024720 | 1480249392 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | x = input("1??\???100??\????????´??°?????\?????????????????????: ")
if (x < 1) or (x > 100):
break
else:
num = x * x * x
print(num, end="\n") | File "/tmp/tmpc33gg2n3/tmp4hn00oyk.py", line 3
break
^^^^^
SyntaxError: 'break' outside loop
| |
s808049823 | p02388 | u156024720 | 1480249477 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | x = input("1??\???100??\????????´??°?????\?????????????????????: ")
num = x * x * x
print(num, end="\n") | Traceback (most recent call last):
File "/tmp/tmpgd1a3yxg/tmpz41oohfy.py", line 1, in <module>
x = input("1??\???100??\????????´??°?????\?????????????????????: ")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| 1??\???100??\????????´??°?????\?????????????????????: |
s448151316 | p02388 | u388237528 | 1480262913 | Python | Python | py | Runtime Error | 0 | 0 | 12 | print x ** 3 | File "/tmp/tmp2b0avn8h/tmpjbtrpb3f.py", line 1
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s356187916 | p02388 | u388237528 | 1480262997 | Python | Python | py | Runtime Error | 0 | 0 | 10 | print x**3 | File "/tmp/tmpdt7x2qwq/tmpf9l9t37x.py", line 1
print x**3
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s099511421 | p02388 | u388237528 | 1480263115 | Python | Python | py | Runtime Error | 0 | 0 | 6 | x ** 3 | Traceback (most recent call last):
File "/tmp/tmpqqwlqfq6/tmp3dvbfclj.py", line 1, in <module>
x ** 3
^
NameError: name 'x' is not defined
| |
s229552756 | p02388 | u388237528 | 1480263292 | Python | Python | py | Runtime Error | 0 | 0 | 18 | y = x ** 3
print y | File "/tmp/tmp3xnvm88x/tmp9aejfz8b.py", line 2
print y
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s541040893 | p02388 | u388237528 | 1480302673 | Python | Python | py | Runtime Error | 0 | 0 | 29 | x = raw_input ()
print x ** 3 | File "/tmp/tmpfxclkhrh/tmpik4683k2.py", line 2
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s203420694 | p02388 | u388237528 | 1480302709 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print (x**3) | Traceback (most recent call last):
File "/tmp/tmpxfdjjz3b/tmps49thvdz.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s802990679 | p02388 | u086109305 | 1480302784 | Python | Python | py | Runtime Error | 0 | 0 | 29 | x = gets.to_i
x = x**3
puts x | File "/tmp/tmpz1n_wpjn/tmpjmyzxp6i.py", line 3
puts x
^
SyntaxError: invalid syntax
| |
s717733140 | p02388 | u388237528 | 1480302800 | Python | Python | py | Runtime Error | 0 | 0 | 22 | x = input
print x ** 3 | File "/tmp/tmp27glzjfh/tmp0hj041nv.py", line 2
print x ** 3
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s288592871 | p02388 | u609392892 | 1480407792 | Python | Python | py | Runtime Error | 0 | 0 | 65 | import sys
args = sys.argv
num = int(args[1])
print num*num*num | File "/tmp/tmp1ili373q/tmpt3az2zbo.py", line 6
print num*num*num
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s139180870 | p02388 | u208868545 | 1480849818 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | import sys
def main():
for line in sys.stdout:
print(int(line.strip())**3)
if __name__ == "__main__":
main() | Traceback (most recent call last):
File "/tmp/tmpvqk0ty4t/tmp7_3s1_ub.py", line 7, in <module>
main()
File "/tmp/tmpvqk0ty4t/tmp7_3s1_ub.py", line 3, in main
for line in sys.stdout:
io.UnsupportedOperation: not readable
| |
s818198521 | p02388 | u910432023 | 1480997184 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp5rw0mley/tmpw29859pn.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s745168553 | p02388 | u569672348 | 1481104610 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) | Traceback (most recent call last):
File "/tmp/tmpsbagtke9/tmpttajb2ps.py", line 1, in <module>
print(x**3)
^
NameError: name 'x' is not defined
| |
s147232849 | p02388 | u569672348 | 1481191654 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | a=x**3
print(a) | Traceback (most recent call last):
File "/tmp/tmpmgql_jmn/tmp2jad9n1b.py", line 1, in <module>
a=x**3
^
NameError: name 'x' is not defined
| |
s596481300 | p02388 | u569672348 | 1481191721 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | a=x**3
print(a) | Traceback (most recent call last):
File "/tmp/tmpgf_6oh55/tmp11_92a1n.py", line 1, in <module>
a=x**3
^
NameError: name 'x' is not defined
| |
s614973841 | p02388 | u569672348 | 1481192195 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | a=x**3
print(int(a)) | Traceback (most recent call last):
File "/tmp/tmpnnnhib3u/tmpvkqe6i3v.py", line 1, in <module>
a=x**3
^
NameError: name 'x' is not defined
| |
s006729720 | p02388 | u569672348 | 1481192775 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | a=x**3
print(a) | Traceback (most recent call last):
File "/tmp/tmprdtly8go/tmp7uofc1sb.py", line 1, in <module>
a=x**3
^
NameError: name 'x' is not defined
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.