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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s075411764 | p00000 | u619547950 | 1509369088 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | object Main {
def main(args: Array[String]): Unit = {
for (i <- 1 to 9; j <- 1 to 9)
println(i + "x" + j + "=" + i * j)
}
} | File "/tmp/tmpq4yyfguv/tmpxxacca_0.py", line 1
object Main {
^^^^
SyntaxError: invalid syntax
| |
s359665904 | p00000 | u232783413 | 1509637150 | Python | Python | py | Runtime Error | 0 | 0 | 84 | for i in range(9):
for i in range(9):
qq = i * j
print("qq") | File "/tmp/tmpp_ummvm7/tmp0sanwxys.py", line 1
for i in range(9):
IndentationError: unexpected indent
| |
s072269595 | p00000 | u232783413 | 1509637505 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | for i in range(9):
for i in range(9):
qq = i * j
print("qq") | File "/tmp/tmpqnvzrw97/tmpm7b53gmy.py", line 1
for i in range(9):
IndentationError: unexpected indent
| |
s522423259 | p00000 | u232783413 | 1509638027 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | for i in range(9):
for i in range(9):
qq = i * j
print("qq") | File "/tmp/tmp9j9_8r68/tmp4q6v5y_f.py", line 1
for i in range(9):
IndentationError: unexpected indent
| |
s260550715 | p00000 | u886119481 | 1509852359 | Python | Python | py | Runtime Error | 0 | 0 | 89 | fori in range(10):
for j in range(10):
print(str(i) + "x" + str(j) + "=" + str(i * j)) | File "/tmp/tmp08446l43/tmpuj5nf9au.py", line 1
fori in range(10):
^
SyntaxError: invalid syntax
| |
s436072969 | p00000 | u119127920 | 1509866026 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | object Main {
def main(args: Array[String]): Unit = {
println("Hello World")
}
} | File "/tmp/tmplcjbdqoj/tmplgvzemaz.py", line 1
object Main {
^^^^
SyntaxError: invalid syntax
| |
s559581775 | p00000 | u930302179 | 1510568170 | Python | Python | py | Runtime Error | 0 | 0 | 72 | for i in rang(1,10):
for j in range(1,10):
print "%dx%d=%d"%(i,j,i*j) | File "/tmp/tmp8s238o2r/tmpgxdfalv2.py", line 3
print "%dx%d=%d"%(i,j,i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s931437157 | p00000 | u930302179 | 1510568238 | Python | Python | py | Runtime Error | 0 | 0 | 75 | for i in rang(1,10):
??for j in range(1,10):
????print "%dx%d=%d"%(i,j,i*j) | File "/tmp/tmp_mm0j115/tmpflh8u4c7.py", line 2
??for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s498415605 | p00000 | u930302179 | 1510569374 | Python | Python | py | Runtime Error | 0 | 0 | 76 | for i in range(1,10):
??for j in range(1,10):
????print "%dx%d=%d"%(i,j,i*j) | File "/tmp/tmp318jycwc/tmprqfd7a1o.py", line 2
??for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s292400563 | p00000 | u930302179 | 1510569391 | Python | Python | py | Runtime Error | 0 | 0 | 78 | for i in range(1,10):
??for j in range(1,10):
????print "%dx%d=%d" %(i,j,i*j) | File "/tmp/tmph1qe5bk9/tmpzp4m0hym.py", line 2
??for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s502115354 | p00000 | u930302179 | 1510569473 | Python | Python | py | Runtime Error | 0 | 0 | 80 | for i in range(1,10):
??for j in range(1,10):
????print "%dx%d=%d" %(i , j,i*j) | File "/tmp/tmp5_o_k5uy/tmpyk4ewl6t.py", line 2
??for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s225061459 | p00000 | u811314383 | 1510751084 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | for i=1 in range(9):
for j=1 in range(9):
print(str(i) + 'x' + str(j) + '=' + str(i*j)) | File "/tmp/tmph4retqek/tmputkqg5ck.py", line 1
for i=1 in range(9):
^
SyntaxError: invalid syntax
| |
s853482900 | p00000 | u811314383 | 1510751258 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | for i=1 in range(10):
for j=1 in range(10):
if(i > 0 and j > 0):
print(str(i) + 'x' + str(j) + '=' + str(i*j)) | File "/tmp/tmprip5_3a2/tmpzljvtgi6.py", line 1
for i=1 in range(10):
^
SyntaxError: invalid syntax
| |
s511105141 | p00000 | u842823276 | 1513128736 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | for a in range(1, 10):
for b in range(1, 10):
print("{}x{}={}".format(a, b, a*b)}) | File "/tmp/tmpboj7iewu/tmpdo4sw7q8.py", line 3
print("{}x{}={}".format(a, b, a*b)})
^
SyntaxError: closing parenthesis '}' does not match opening parenthesis '('
| |
s608930623 | p00000 | u119252499 | 1514283367 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | for i in range(9):
for j in range(9):
print(i+1 + "x" + j+1 + "=" + i*j) | Traceback (most recent call last):
File "/tmp/tmpuewq_1g6/tmp0a38z7t0.py", line 3, in <module>
print(i+1 + "x" + j+1 + "=" + i*j)
~~~~^~~~~
TypeError: unsupported operand type(s) for +: 'int' and 'str'
| |
s692046113 | p00000 | u538972897 | 1515109955 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | for i in range(1, 10):
for j in range(1, 10):
print str(i) + 'x' + str(j) + '=' + str(i * j)
| File "/tmp/tmpaj2zk87j/tmpg4p5tttb.py", line 3
print str(i) + 'x' + str(j) + '=' + str(i * j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s005649984 | p00000 | u764789069 | 1515257224 | Python | Python | py | Runtime Error | 0 | 0 | 139 | # -*- coding: utf-8 -*-
for i in range(1,10):
for j in range(1,10):
ans = i * j
print(u"{0}×{1}={2}".format(i,j,ans))
| 1×1=1
1×2=2
1×3=3
1×4=4
1×5=5
1×6=6
1×7=7
1×8=8
1×9=9
2×1=2
2×2=4
2×3=6
2×4=8
2×5=10
2×6=12
2×7=14
2×8=16
2×9=18
3×1=3
3×2=6
3×3=9
3×4=12
3×5=15
3×6=18
3×7=21
3×8=24
3×9=27
4×1=4
4×2=8
4×3=12
4×4=16
4×5=20
4×6=24
4×7=28
4×8=32
4×9=36
5×1=5
5×2=10
5×3=15
5×4=20
5×5=25
5×6=30
5×7=35
5×8=40
5×9=45
6×1=6
6×2=12
6×3=18
6×4=24
6×5=30
6×6=36
6×7=42
6×8=48
6×9=54
7×1=7
7×2=14
7×3=21
7×4=28
7×5=35
7×6=42
7×7=49
7×8=56
7×9=63
8×1=8
8×2=16
8×3=24
8×4=32
8×5=40
8×6=48
8×7=56
8×8=64
8×9=72
9×1=9
9×2=18
9×3=27
9×4=36
9×5=45
9×6=54
9×7=63
9×8=72
9×9=81
| |
s912318994 | p00000 | u011621222 | 1515566890 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | for i in range(1,10):
for j in range(1,10);
print('{}x{}={}', i, j, i*j)
| File "/tmp/tmpjmqkemdi/tmpmd7v_xr3.py", line 2
for j in range(1,10);
^
SyntaxError: invalid syntax
| |
s598914261 | p00000 | u772040231 | 1516001386 | Python | Python | py | Runtime Error | 0 | 0 | 79 | for i in range(1,10):
for j in range(1,10):
print(i 'x' j '=' i*j)
| File "/tmp/tmpxeenw_27/tmpvuz4bqh0.py", line 3
print(i 'x' j '=' i*j)
^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s796164658 | p00000 | u748055360 | 1521550671 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | for(a in range(1,9)):
for(b in range(1,9)):
print(a,"x",b,"=",a*b)
| File "/tmp/tmpaa11ba8w/tmpc5ofjadg.py", line 1
for(a in range(1,9)):
^
SyntaxError: invalid syntax
| |
s229236941 | p00000 | u577593877 | 1521553281 | Python | Python | py | Runtime Error | 0 | 0 | 81 | for a in range(10):
for b in range(10):
i = a x b
print(a,"x" ,b ,"=",i)
| File "/tmp/tmp_qpfufa3/tmp8ymv32l8.py", line 4
i = a x b
^
SyntaxError: invalid syntax
| |
s709192904 | p00000 | u577593877 | 1521553347 | Python | Python | py | Runtime Error | 0 | 0 | 80 | for a in range(10):
for b in range(10):
i = a x b
print(a,"x" ,b ,"=",i)
| File "/tmp/tmph3ij9zez/tmp9ou_6ooj.py", line 3
i = a x b
^
SyntaxError: invalid syntax
| |
s216862006 | p00000 | u577593877 | 1521553405 | Python | Python | py | Runtime Error | 0 | 0 | 76 | for a in range(10):
for b in range(10):
i = a x b
print(a,"x",b,"=",i)
| File "/tmp/tmpd1uwuzfk/tmpk3k3iexe.py", line 3
i = a x b
^
SyntaxError: invalid syntax
| |
s582295148 | p00000 | u577593877 | 1521554036 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for a in range(1,10):
for b in range(1,10):
i = a * b
print(a,"x",b,"=",i,sep="")
| 1x1=1
1x2=2
1x3=3
1x4=4
1x5=5
1x6=6
1x7=7
1x8=8
1x9=9
2x1=2
2x2=4
2x3=6
2x4=8
2x5=10
2x6=12
2x7=14
2x8=16
2x9=18
3x1=3
3x2=6
3x3=9
3x4=12
3x5=15
3x6=18
3x7=21
3x8=24
3x9=27
4x1=4
4x2=8
4x3=12
4x4=16
4x5=20
4x6=24
4x7=28
4x8=32
4x9=36
5x1=5
5x2=10
5x3=15
5x4=20
5x5=25
5x6=30
5x7=35
5x8=40
5x9=45
6x1=6
6x2=12
6x3=18
6x4=24
6x5=30
6x6=36
6x7=42
6x8=48
6x9=54
7x1=7
7x2=14
7x3=21
7x4=28
7x5=35
7x6=42
7x7=49
7x8=56
7x9=63
8x1=8
8x2=16
8x3=24
8x4=32
8x5=40
8x6=48
8x7=56
8x8=64
8x9=72
9x1=9
9x2=18
9x3=27
9x4=36
9x5=45
9x6=54
9x7=63
9x8=72
9x9=81
| |
s731737463 | p00000 | u577593877 | 1521554084 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for a in range(1,10):
for b in range(1,10):
i = a * b
print(a,"x",b,"=",i,sep="")
| 1x1=1
1x2=2
1x3=3
1x4=4
1x5=5
1x6=6
1x7=7
1x8=8
1x9=9
2x1=2
2x2=4
2x3=6
2x4=8
2x5=10
2x6=12
2x7=14
2x8=16
2x9=18
3x1=3
3x2=6
3x3=9
3x4=12
3x5=15
3x6=18
3x7=21
3x8=24
3x9=27
4x1=4
4x2=8
4x3=12
4x4=16
4x5=20
4x6=24
4x7=28
4x8=32
4x9=36
5x1=5
5x2=10
5x3=15
5x4=20
5x5=25
5x6=30
5x7=35
5x8=40
5x9=45
6x1=6
6x2=12
6x3=18
6x4=24
6x5=30
6x6=36
6x7=42
6x8=48
6x9=54
7x1=7
7x2=14
7x3=21
7x4=28
7x5=35
7x6=42
7x7=49
7x8=56
7x9=63
8x1=8
8x2=16
8x3=24
8x4=32
8x5=40
8x6=48
8x7=56
8x8=64
8x9=72
9x1=9
9x2=18
9x3=27
9x4=36
9x5=45
9x6=54
9x7=63
9x8=72
9x9=81
| |
s026132519 | p00000 | u577593877 | 1521554095 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for a in range(1,10):
for b in range(1,10):
i = a * b
print(a,"x",b,"=",i,sep="")
| 1x1=1
1x2=2
1x3=3
1x4=4
1x5=5
1x6=6
1x7=7
1x8=8
1x9=9
2x1=2
2x2=4
2x3=6
2x4=8
2x5=10
2x6=12
2x7=14
2x8=16
2x9=18
3x1=3
3x2=6
3x3=9
3x4=12
3x5=15
3x6=18
3x7=21
3x8=24
3x9=27
4x1=4
4x2=8
4x3=12
4x4=16
4x5=20
4x6=24
4x7=28
4x8=32
4x9=36
5x1=5
5x2=10
5x3=15
5x4=20
5x5=25
5x6=30
5x7=35
5x8=40
5x9=45
6x1=6
6x2=12
6x3=18
6x4=24
6x5=30
6x6=36
6x7=42
6x8=48
6x9=54
7x1=7
7x2=14
7x3=21
7x4=28
7x5=35
7x6=42
7x7=49
7x8=56
7x9=63
8x1=8
8x2=16
8x3=24
8x4=32
8x5=40
8x6=48
8x7=56
8x8=64
8x9=72
9x1=9
9x2=18
9x3=27
9x4=36
9x5=45
9x6=54
9x7=63
9x8=72
9x9=81
| |
s355931436 | p00000 | u577593877 | 1521554197 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for a in range(1,10):
for b in range(1,10):
i = a * b
print(a,"x",b,"=",i,sep="")
| 1x1=1
1x2=2
1x3=3
1x4=4
1x5=5
1x6=6
1x7=7
1x8=8
1x9=9
2x1=2
2x2=4
2x3=6
2x4=8
2x5=10
2x6=12
2x7=14
2x8=16
2x9=18
3x1=3
3x2=6
3x3=9
3x4=12
3x5=15
3x6=18
3x7=21
3x8=24
3x9=27
4x1=4
4x2=8
4x3=12
4x4=16
4x5=20
4x6=24
4x7=28
4x8=32
4x9=36
5x1=5
5x2=10
5x3=15
5x4=20
5x5=25
5x6=30
5x7=35
5x8=40
5x9=45
6x1=6
6x2=12
6x3=18
6x4=24
6x5=30
6x6=36
6x7=42
6x8=48
6x9=54
7x1=7
7x2=14
7x3=21
7x4=28
7x5=35
7x6=42
7x7=49
7x8=56
7x9=63
8x1=8
8x2=16
8x3=24
8x4=32
8x5=40
8x6=48
8x7=56
8x8=64
8x9=72
9x1=9
9x2=18
9x3=27
9x4=36
9x5=45
9x6=54
9x7=63
9x8=72
9x9=81
| |
s004954171 | p00000 | u215863296 | 1524042109 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a=1
b=1
while a<=9
while b<=9
print (a"x"b"="a*b")
b+=1
a+=1
| File "/tmp/tmpsi0ty_7s/tmp2ospcl6w.py", line 5
print (a"x"b"="a*b")
^
SyntaxError: unterminated string literal (detected at line 5)
| |
s834585465 | p00000 | u284260266 | 1526988680 | Python | Python3 | py | Runtime Error | 0 | 0 | 204 | for i in range(1, 10):
for j in range(1, 10):
print('{}×{}='.format(i,j), i*j)
exit()for i in range(1, 10):
for j in range(1, 10):
print(str(i)+'×'+str(j)+'='+str(i*j))
exit()
| File "/tmp/tmpxte44jrq/tmpr6t2cyex.py", line 4
exit()for i in range(1, 10):
^^^
SyntaxError: invalid syntax
| |
s749853974 | p00000 | u745214779 | 1527646289 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | for i in range(1,10):
for j in range(1,10):
print(i * j)
| File "/tmp/tmp50ua9vqm/tmpcrudwecg.py", line 2
for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s736544623 | p00000 | u745214779 | 1527646337 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | for i in range(1,10):
for j in range(1,10):
print(i * j)
print()
| File "/tmp/tmpoif9ecb3/tmp39r3lbyj.py", line 2
for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s969097114 | p00000 | u745214779 | 1527646514 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | for i in range(1,10):
for j in range(1,10):
print(i, x, j, =, i*j)
| File "/tmp/tmpqu2km8qz/tmp1aix6z9l.py", line 2
for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s208795437 | p00000 | u745214779 | 1527664705 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | for i in range(1,10):
for j in range(1,10):
print(i, x, j, =, i * j)
print()
| File "/tmp/tmpr9zobrf2/tmp6cia7742.py", line 3
print(i, x, j, =, i * j)
^
SyntaxError: invalid syntax
| |
s951974370 | p00000 | u745214779 | 1527666420 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | h = x
for i in range (1,10):
for j in range (1,10):
print(i, h, j, i*j)
| File "/tmp/tmpu4et6q95/tmpgta6uyfk.py", line 3
for j in range (1,10):
^
IndentationError: expected an indented block after 'for' statement on line 2
| |
s880708255 | p00000 | u387614087 | 1527957924 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i=0;i<9;i++
for j=0;j<9;j++;j++
print(i+1,"x",j+1"=",(i+1)*(j+1)),
print("")
| File "/tmp/tmp5l2896jn/tmpe6o2m8wq.py", line 1
for i=0;i<9;i++
^
SyntaxError: invalid syntax
| |
s137678913 | p00000 | u387614087 | 1527957959 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i=0;i<9;i++
for j=0;j<9;j++;j++
print(i+1,"x",j+1"=",(i+1)*(j+1),)
print("")
| File "/tmp/tmpdsf4uhc2/tmpb_5rhl9o.py", line 1
for i=0;i<9;i++
^
SyntaxError: invalid syntax
| |
s555658159 | p00000 | u483248490 | 1528875791 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | for i in range(1,10):
for j in range(1,10):
print str(i)+"x"+str(j)"="+str(i*j)
| File "/tmp/tmpsixiaey_/tmptaskkgc2.py", line 3
print str(i)+"x"+str(j)"="+str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s443063835 | p00000 | u483248490 | 1528875905 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i in range(1,10):
for j in range(1,10):
print str(i)+"x"+str(j)+"="+str(i*j)
| File "/tmp/tmpmkruj0nk/tmpbuxyj_pr.py", line 3
print str(i)+"x"+str(j)+"="+str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s006149945 | p00000 | u483248490 | 1528876124 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | for i in range(1,10):
for j in range(1,10):
print str(i) + "x" + str(j) + "=" + str(i*j)
| File "/tmp/tmpdw74fyvm/tmpji9jzzr4.py", line 3
print str(i) + "x" + str(j) + "=" + str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s936730332 | p00000 | u239707270 | 1529141101 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | for i in range(1,10):
for j in range(1,10):
print(i"×"j"="i*j)
| File "/tmp/tmp0_8r1gx1/tmp430qo9id.py", line 3
print(i"×"j"="i*j)
^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s548936650 | p00000 | u498680922 | 1351612565 | Python | Python | py | Runtime Error | 0 | 0 | 83 | or i in range(1,10):
for r in range(1,10):
print "%s*%s=%s" % (i,r,i*r) | File "/tmp/tmpmfkvcruk/tmp_lhyy2fq.py", line 1
or i in range(1,10):
^^
SyntaxError: invalid syntax
| |
s058367766 | p00000 | u647766105 | 1360222234 | Python | Python | py | Runtime Error | 0 | 0 | 178 | function Main(input) {
for(i=1;i<10;i++){
for(j=1;j<10;j++){
console.log("%dx%d=%d",i,j,i*j);
}
}
}
//input
Main(require("fs").readFileSync("/dev/stdin", "utf8")); | File "/tmp/tmpu277vd_5/tmpnx5obtwt.py", line 1
function Main(input) {
^^^^
SyntaxError: invalid syntax
| |
s208475567 | p00000 | u647766105 | 1360222301 | Python | Python | py | Runtime Error | 0 | 0 | 83 | for(i=1;i<10;i++){
for(j=1;j<10;j++){
console.log("%dx%d=%d",i,j,i*j);
}
} | File "/tmp/tmppcti1y8v/tmp5pll_id2.py", line 1
for(i=1;i<10;i++){
^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s583451555 | p00000 | u282635979 | 1362238465 | Python | Python | py | Runtime Error | 0 | 0 | 202 | a = 1
b = 1
while True:
if a != 10:
while True:
print(str(a) + 'x' + str(b) + '=' + str(a*b))
b += 1
if b != 10:
continue
else:
b = 1
a += 1
break
continue
else:
break | File "/tmp/tmps4i8dzci/tmpzbi31oqv.py", line 16
break
^
IndentationError: expected an indented block after 'else' statement on line 15
| |
s498572853 | p00000 | u760351030 | 1367392289 | Python | Python | py | Runtime Error | 0 | 0 | 81 | for i in range(1,10):$
^Ifor j in range(1,10):$
^I^Iprint i,"*",j,"=",i*j$ | File "/tmp/tmp602u9b13/tmpc314a8e1.py", line 1
for i in range(1,10):$
IndentationError: unexpected indent
| |
s066607598 | p00000 | u760351030 | 1367392319 | Python | Python | py | Runtime Error | 0 | 0 | 80 | for i in range(1,10):$
for j in range(1,10):$
print i,"*",j,"=",i*j$ | File "/tmp/tmpbhtzyrt0/tmp1eco21__.py", line 1
for i in range(1,10):$
IndentationError: unexpected indent
| |
s458800281 | p00000 | u760351030 | 1367392352 | Python | Python | py | Runtime Error | 0 | 0 | 72 | for i in range(1,10):
for j in range(1,10):
print i,"*",j,"=",i*j | File "/tmp/tmpt0dxikuy/tmpb7wtwq8u.py", line 1
for i in range(1,10):
IndentationError: unexpected indent
| |
s953981095 | p00000 | u814249052 | 1368360971 | Python | Python | py | Runtime Error | 0 | 0 | 102 | for i in range(1, 10):
for j in range(1, 10):
print str(i) + 'x' + str(j) + '=' str(i * j) | File "/tmp/tmp0ls1dulx/tmpg9c17fza.py", line 3
print str(i) + 'x' + str(j) + '=' str(i * j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s417179663 | p00000 | u228756885 | 1376480690 | Python | Python | py | Runtime Error | 0 | 0 | 77 | for i in range(1:10):
for j in range(1:10):
print "%dx%d=%d" % (i, j, i*j) | File "/tmp/tmpgqh7k5ev/tmpbmw70s7w.py", line 1
for i in range(1:10):
^
SyntaxError: invalid syntax
| |
s886125313 | p00000 | u228756885 | 1376480772 | Python | Python | py | Runtime Error | 0 | 0 | 81 | for i in range(1, 10):
for j in range(1, 10):
print "%dx%d=%d" % (i, j, i*j) | File "/tmp/tmp_xel3cq7/tmp6c2o6pky.py", line 1
for i in range(1, 10):
IndentationError: unexpected indent
| |
s317375907 | p00000 | u023846178 | 1385933749 | Python | Python | py | Runtime Error | 0 | 0 | 5 | for i | File "/tmp/tmpkh38ow1k/tmpg2xh84nr.py", line 1
for i
^
SyntaxError: invalid syntax
| |
s915708246 | p00000 | u786185717 | 1386952623 | Python | Python | py | Runtime Error | 0 | 0 | 88 | print str(i) + 'x' + str(j) + '=' + str(i * j) for j in range(1,10) for i in range(1,10) | File "/tmp/tmpx1uzww0z/tmpke4xxgky.py", line 1
print str(i) + 'x' + str(j) + '=' + str(i * j) for j in range(1,10) for i in range(1,10)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s546719937 | p00000 | u912237403 | 1390115076 | Python | Python | py | Runtime Error | 0 | 0 | 64 | A=range(1,10)
for i in A:
for j in A:
print i,"x",j,"=",i*j | File "/tmp/tmptwitlzj_/tmp5462s0tt.py", line 4
print i,"x",j,"=",i*j
^
IndentationError: unindent does not match any outer indentation level
| |
s855931323 | p00000 | u912237403 | 1390115114 | Python | Python | py | Runtime Error | 0 | 0 | 63 | A=range(1,10)
for i in A:
for j in A:
print i,"x",j,"=",i*j | File "/tmp/tmp_v12us99/tmph4ulwodk.py", line 4
print i,"x",j,"=",i*j
^
IndentationError: expected an indented block after 'for' statement on line 3
| |
s463928891 | p00000 | u446235837 | 1395590479 | Python | Python | py | Runtime Error | 0 | 0 | 73 | for i in range(10):
for s in range(10):
print i+"*"+s+"="+i*s | File "/tmp/tmpdkun4uij/tmpeog3zxe6.py", line 3
print i+"*"+s+"="+i*s
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s184277671 | p00000 | u633068244 | 1397313039 | Python | Python | py | Runtime Error | 0 | 0 | 142 | #include <stdio.h>
int main(void) {
int i,j;
for (i=1;i<10;i++){
for (j=1;j<10;j++){
printf("%dx%d=%d\n",i,j,i*j);
}
}
return 0;
} | File "/tmp/tmpjth8xez2/tmpx7xpt010.py", line 3
int main(void) {
^^^^
SyntaxError: invalid syntax
| |
s600146890 | p00000 | u525640557 | 1402313006 | Python | Python | py | Runtime Error | 0 | 0 | 97 | i=1
j=i
while i<=9
while j<=9
a=i*j
print a
i=i+1 | File "/tmp/tmphiryq1_n/tmpgnh6oypd.py", line 3
while i<=9
^
SyntaxError: expected ':'
| |
s707094442 | p00000 | u525640557 | 1402380527 | Python | Python | py | Runtime Error | 0 | 0 | 1 | a | Traceback (most recent call last):
File "/tmp/tmpnysr32tb/tmpq2dxg40w.py", line 1, in <module>
a
NameError: name 'a' is not defined
| |
s010633336 | p00001 | u525366883 | 1535370928 | Python | Python | py | Runtime Error | 0 | 0 | 145 | moutain = [0 for i in range(10]
for i in range(10):
moutain[i] = int(raw_input())
moutain.sort().reverse()
for i in range(3):
moutain[i]
| File "/tmp/tmpg5jpq2hj/tmpekytq6aj.py", line 1
moutain = [0 for i in range(10]
^
SyntaxError: closing parenthesis ']' does not match opening parenthesis '('
| |
s553694312 | p00001 | u525366883 | 1535370942 | Python | Python | py | Runtime Error | 0 | 0 | 146 | moutain = [0 for i in range(10)]
for i in range(10):
moutain[i] = int(raw_input())
moutain.sort().reverse()
for i in range(3):
moutain[i]
| Traceback (most recent call last):
File "/tmp/tmpg0iso52h/tmpdx1bxm6a.py", line 3, in <module>
moutain[i] = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s114098703 | p00001 | u580227385 | 1535441507 | Python | Python3 | py | Runtime Error | 0 | 0 | 210 | if __name__ == '__main__':
hight = input().split()
num = [int(n) for n in hight]
print(sorted(num, reverse=True)[0])
print(sorted(num, reverse=True)[1])
print(sorted(num, reverse=True)[2])
| Traceback (most recent call last):
File "/tmp/tmpfs96n6tq/tmppj5zlc30.py", line 2, in <module>
hight = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s786015254 | p00001 | u580227385 | 1535442992 | Python | Python3 | py | Runtime Error | 0 | 0 | 181 | if __name__ == '__main__':
hight = int(input()).split()
print(sorted(num, reverse=True)[0])
print(sorted(num, reverse=True)[1])
print(sorted(num, reverse=True)[2])
| Traceback (most recent call last):
File "/tmp/tmpgly_1h9a/tmph2d2w35b.py", line 2, in <module>
hight = int(input()).split()
^^^^^^^
EOFError: EOF when reading a line
| |
s461348648 | p00001 | u580227385 | 1535443153 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | if __name__ == '__main__':
hight = int(input()).split()
print(sorted(num, reverse=True)[i] for i in range(0, 3))
| Traceback (most recent call last):
File "/tmp/tmp6cbbda_9/tmpdmyhz5rz.py", line 2, in <module>
hight = int(input()).split()
^^^^^^^
EOFError: EOF when reading a line
| |
s586060194 | p00001 | u580227385 | 1535443558 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | hight = input().split()
num = [int(n) for n in hight]
print(sorted(num)[-1])
print(sorted(num)[-2])
print(sorted(num)[-3])
| Traceback (most recent call last):
File "/tmp/tmp50ffxl2e/tmp3tte40ae.py", line 1, in <module>
hight = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s504277282 | p00001 | u580227385 | 1535443721 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | hight = input().split("\n")
num = [int(n) for n in hight]
print(sorted(num)[-1])
print(sorted(num)[-2])
print(sorted(num)[-3])
| Traceback (most recent call last):
File "/tmp/tmpsedn8dts/tmpg_uutx0l.py", line 1, in <module>
hight = input().split("\n")
^^^^^^^
EOFError: EOF when reading a line
| |
s016107060 | p00001 | u580227385 | 1535444378 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | num = [int(input()) for i in range(10)]
num.sort(reverse=True)
for i in range[0:3]:
print(num[i])
| Traceback (most recent call last):
File "/tmp/tmpc_30fdv4/tmppmbowlnp.py", line 1, in <module>
num = [int(input()) for i in range(10)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpc_30fdv4/tmppmbowlnp.py", line 1, in <listcomp>
num = [int(input()) for i in range(10)]
^^^^^^^
EOFError: EOF when reading a line
| |
s002906570 | p00001 | u668055645 | 1545265887 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | l = []
for i in range(10):
l.append(int(input))
l.sort()
for i in range(3):
print(l[i])
| Traceback (most recent call last):
File "/tmp/tmp5o4tog7z/tmpgpa3j6yh.py", line 3, in <module>
l.append(int(input))
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s725820419 | p00001 | u862333119 | 1545689311 | Python | Python3 | py | Runtime Error | 0 | 0 | 315 | #include <iostream>
#include <set>
using namespace std;
int main() {
multiset<int, greater<int>> ms; int temp;
for (int i = 0; i < 10; i++) {
cin >> temp; ms.insert(temp);
}
multiset<int, greater<int>>::iterator itr = ms.begin();
for (int i = 0; i < 3; i++, ++itr) {
cout << *itr << endl;
}
return 0;
}
| File "/tmp/tmp5zlip9n1/tmpiepok4xj.py", line 3
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s194894054 | p00001 | u563307622 | 1556298743 | Python | Python3 | py | Runtime Error | 0 | 0 | 215 | a_list = []
for i in range(10):
while True:
a = input()
a = int(a)
if 0<a and a<10000:break
a_list.append(a)
for i in range(3):
print(max(a_list))
a_list.remove(max(a_list))
| Traceback (most recent call last):
File "/tmp/tmp1v_ffct3/tmpd2rw791d.py", line 4, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s877724815 | p00001 | u696166817 | 1409285139 | Python | Python | py | Runtime Error | 0 | 0 | 233 | import sys
#list = sys.stdin.readlines()
i=0
list = []
for line in sys.stdin.readlines():
list.append(int(line.strip("\n")))
print soted(list, reverse=True)[0]
print soted(list, reverse=True)[1]
print soted(list, reverse=True)[2] | File "/tmp/tmp014iqlc0/tmp47t7mppf.py", line 10
print soted(list, reverse=True)[0]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s347070175 | p00001 | u607831289 | 1415989508 | Python | Python | py | Runtime Error | 0 | 0 | 130 | import sys
mt_heigts = map(int, sys.stdin.readlines())
mt_heigts.sort(reverse=True)
for height in mt_heights[:3]:
print height | File "/tmp/tmpaiigq_52/tmptxo8qc3o.py", line 5
print height
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s068025056 | p00001 | u567380442 | 1422528726 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | import sys
mountains = [int(line.readline()) for line in sys.stdin]
for height in sorted(mountains)[-3:][::-1]:
print(height) | ||
s320199506 | p00001 | u349293999 | 1423828535 | Python | Python | py | Runtime Error | 0 | 0 | 136 | # coding: UTF-8
inputs=[]
for i in range(1,10):
inputs.append(input())
inputs.sort(reverse=True)
for i in range(0,3):
print x[i] | File "/tmp/tmpzmtz2dwe/tmpmfi0xe79.py", line 7
print x[i]
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s396873093 | p00001 | u888595898 | 1428738886 | Python | Python3 | py | Runtime Error | 0 | 0 | 234 | a = 0
b = 0
c = 0
for i in range(0, 10):
inputNum = int(raw_input())
if a < inputNum:
a = inputNum
continue
elif b < inputNum:
b = inputNum
continue
elif c < inputNum:
c = inputNum
print a
print b
print c | File "/tmp/tmpai2jr_7p/tmpzz0zat7b.py", line 16
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s747374692 | p00001 | u308369184 | 1430556061 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | a=[]
b=a.sort()
c=b.reverse()
print(c[0:2]) | Traceback (most recent call last):
File "/tmp/tmprikhk4ow/tmp5w9gzxlw.py", line 3, in <module>
c=b.reverse()
^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'reverse'
| |
s727297485 | p00001 | u308369184 | 1430556858 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a=i[nt(input()) i in range(10)]
a.sort
a.reverse
print(a[0:2]) | File "/tmp/tmpw40qwc50/tmpkahm850r.py", line 1
a=i[nt(input()) i in range(10)]
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s900911440 | p00001 | u308369184 | 1430556887 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a=i[nt(input()) i in range(10)]
a.sort()
a.reverse()
print(a[0:2]) | File "/tmp/tmpot05g2u0/tmp0sewae0h.py", line 1
a=i[nt(input()) i in range(10)]
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s443188642 | p00001 | u308369184 | 1430556900 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a=[int(input()) i in range(10)]
a.sort()
a.reverse()
print(a[0:2]) | File "/tmp/tmpw8qpi7sf/tmpdlpcqi8j.py", line 1
a=[int(input()) i in range(10)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s795603556 | p00001 | u747594996 | 1433906928 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 |
list = []
for i in range(10):
hill = int(input())
list.append(hill)
sorted(list)
h1 = a[9]
h2 = a[8]
h3 = a[7]
print(h1)
print(h2)
print(h3) | Traceback (most recent call last):
File "/tmp/tmps4k7y6ld/tmpa6ukflyu.py", line 4, in <module>
hill = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s112626230 | p00001 | u747594996 | 1433932409 | Python | Python3 | py | Runtime Error | 0 | 0 | 249 | def main():
number = []
for i in range(10):
num = int(input())
number.append(num)
numbers = number.sorted(number)
print(numbers[9])
print(numbers[8])
print(numbers[7])
if __name__=='__main__':
main() | Traceback (most recent call last):
File "/tmp/tmpbsqu1_hv/tmpg12rgyxq.py", line 17, in <module>
main()
File "/tmp/tmpbsqu1_hv/tmpg12rgyxq.py", line 4, in main
num = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s579096540 | p00001 | u622015302 | 1434826160 | Python | Python | py | Runtime Error | 0 | 0 | 95 | while 1:
list = raw_input().split()
x = int(list[0]) + int(list[1])
print "%d" % len(str(x)) | File "/tmp/tmpos89vo7m/tmp4il93hp2.py", line 4
print "%d" % len(str(x))
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s230625124 | p00001 | u472944603 | 1436953462 | Python | Python | py | Runtime Error | 0 | 0 | 113 | data = map(int, raw_input().split())
data = sorted(data)
data.reverse()
for i in range(3):
print data[i]
| File "/tmp/tmp36nm8m9a/tmp63c33d94.py", line 5
print data[i]
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s492147417 | p00001 | u390422052 | 1437206322 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | s = []
for i in xrange(10):
s.append(int(raw_input()))
s.sort()
s.reverse()
for i in xrange(3):
print s[i] | File "/tmp/tmpseeqd4q6/tmpc_8xb0s6.py", line 3
s.append(int(raw_input()))
^
IndentationError: expected an indented block after 'for' statement on line 2
| |
s163374077 | p00001 | u390422052 | 1437206327 | Python | Python | py | Runtime Error | 0 | 0 | 106 | s = []
for i in xrange(10):
s.append(int(raw_input()))
s.sort()
s.reverse()
for i in xrange(3):
print s[i] | File "/tmp/tmpu5j8u90k/tmpkpi8rico.py", line 3
s.append(int(raw_input()))
^
IndentationError: expected an indented block after 'for' statement on line 2
| |
s332255293 | p00001 | u472944603 | 1437398512 | Python | Python | py | Runtime Error | 0 | 0 | 114 | data = map(int, raw_input().split())
data = sorted(data)
data.reverse()
for i in range(3):
print data[i]
| File "/tmp/tmp5tg3ny7t/tmpuks01ble.py", line 6
print data[i]
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s311728996 | p00001 | u071010747 | 1445158714 | Python | Python3 | py | Runtime Error | 0 | 0 | 294 | # -*- coding:utf-8 -*-
def main():
List=[]
while(True):
a=input()
if a=="":
break
else:
List.append(a)
List.sort(reverse=True)
print(List[0])
print(List[1])
print(List[2])
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmp4_4gpq1a/tmpobli061r.py", line 19, in <module>
main()
File "/tmp/tmp4_4gpq1a/tmpobli061r.py", line 6, in main
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s863807995 | p00001 | u313846744 | 1447768439 | Python | Python | py | Runtime Error | 0 | 0 | 125 | input = [12,123,1221,5231,412,5123,4512,21234,21351,1143]
sort_input = input.sort()
for x in range(1,4)
print sort_input[-x] | File "/tmp/tmptin9pcdl/tmp8_vv54if.py", line 3
for x in range(1,4)
^
SyntaxError: expected ':'
| |
s344421368 | p00001 | u313846744 | 1447768474 | Python | Python | py | Runtime Error | 0 | 0 | 125 | input = [12,123,1221,5231,412,5123,4512,21234,21351,1143]
sort_input = input.sort()
for x in range(1,4)
print sort_input[-x] | File "/tmp/tmpp1aqz6u7/tmpzhh0ivz2.py", line 3
for x in range(1,4)
^
SyntaxError: expected ':'
| |
s924999770 | p00001 | u313846744 | 1447768523 | Python | Python | py | Runtime Error | 0 | 0 | 126 | input = [12,123,1221,5231,412,5123,4512,21234,21351,1143]
sort_input = input.sort()
for x in range(1,4):
print sort_input[-x] | File "/tmp/tmpoa55gxuf/tmpewbnqm9e.py", line 4
print sort_input[-x]
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s337995091 | p00001 | u313846744 | 1447768637 | Python | Python | py | Runtime Error | 0 | 0 | 113 | input = [12,123,1221,5231,412,5123,4512,21234,21351,1143]
input.sort()
for x in range(1,4):
print sort_input[-x] | File "/tmp/tmp3lixe64i/tmppa1hf2_6.py", line 4
print sort_input[-x]
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s983483540 | p00001 | u982618289 | 1448942371 | Python | Python3 | py | Runtime Error | 0 | 0 | 184 | from numpy.random import mtrand
mt = []
for i in range(10):
mt.append(input())
print(mt.pop(mt.index(max(mt))))
print(mt.pop(mt.index(max(mt))))
print(mt.pop(mt.index(max(mt)))) | Traceback (most recent call last):
File "/tmp/tmp8utkffe3/tmpeitl3a88.py", line 6, in <module>
mt.append(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s649284478 | p00001 | u982618289 | 1448943016 | Python | Python3 | py | Runtime Error | 0 | 0 | 220 | # - coding:utf-8 -*-
from numpy.random import mtrand
mt = []
for i in range(10):
mt.append(input())
print(str(mt.pop(mt.index(max(mt)))))
print(str(mt.pop(mt.index(max(mt)))))
print(str(mt.pop(mt.index(max(mt))))) | Traceback (most recent call last):
File "/tmp/tmpt0lpw9i1/tmpyyh47mt5.py", line 7, in <module>
mt.append(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s965266229 | p00001 | u982618289 | 1448943355 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | mt = []
for i in range(10):
mt.append(int(input().strip()))
mt.sort().reverse()
print( mt[0] )
print( mt[1] )
print( mt[2] ) | Traceback (most recent call last):
File "/tmp/tmp5usvlpcb/tmphxn_oocb.py", line 4, in <module>
mt.append(int(input().strip()))
^^^^^^^
EOFError: EOF when reading a line
| |
s600519487 | p00001 | u302511098 | 1452788963 | Python | Python | py | Runtime Error | 0 | 0 | 201 | n = input()
#a = [39, 98, 44, 13, 88, 53, 10]
a = [input() for i in range(n)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i | File "/tmp/tmp62nagn6j/tmpwh8frnv_.py", line 14
print i
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s438124955 | p00001 | u302511098 | 1452789040 | Python | Python | py | Runtime Error | 0 | 0 | 167 | N = input()
a = [input() for i in range(N)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i | File "/tmp/tmph54neyuy/tmpbnef5tfl.py", line 13
print i
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s577565988 | p00001 | u302511098 | 1452789065 | Python | Python | py | Runtime Error | 0 | 0 | 167 | N = input()
a = [input() for i in range(N)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i | File "/tmp/tmpmx4ss8eo/tmpiu7amzse.py", line 13
print i
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s477602087 | p00001 | u302511098 | 1452789192 | Python | Python | py | Runtime Error | 0 | 0 | 169 | 10 = input()
a = [input() for i in range(10)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i | File "/tmp/tmpo6r7qbbe/tmpgprufu8r.py", line 1
10 = input()
^^
SyntaxError: cannot assign to literal here. Maybe you meant '==' instead of '='?
| |
s462167801 | p00001 | u302511098 | 1452789894 | Python | Python | py | Runtime Error | 0 | 0 | 168 | n = input()
a = [input() for i in range(10)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i | File "/tmp/tmpdsrinrhg/tmpml6jaxo9.py", line 13
print i
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s942377811 | p00001 | u302511098 | 1452790057 | Python | Python | py | Runtime Error | 0 | 0 | 183 | N = input()
a = []
for i in range(N):
a.append(input())
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i | File "/tmp/tmpax2c5rbv/tmpwa6i2f2r.py", line 15
print i
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s083692626 | p00001 | u302511098 | 1452790223 | Python | Python | py | Runtime Error | 0 | 0 | 177 | N = input()
a = []
for i in range(N):
a.append(input())
b = [0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i | File "/tmp/tmpx0d76hz5/tmpv4m6_73a.py", line 15
print i
^^^^^^^
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.