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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s294936995 | p02398 | u994049982 | 1458663534 | Python | Python | py | Runtime Error | 0 | 0 | 99 | a,b,c=map(int,input().split())
d=0
for i in range(a,b+1):
if c%i==0:
d+=1
print(str(d)) | Traceback (most recent call last):
File "/tmp/tmpq9q20are/tmpol3h025j.py", line 1, in <module>
a,b,c=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s289514239 | p02398 | u463783070 | 1458992473 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a,b,c = map(int, input().split())
print [for i in range(a,b+1):
if c % i == 0 | File "/tmp/tmp4iu52i86/tmpgng6_59d.py", line 3
print [for i in range(a,b+1):
^^^
SyntaxError: invalid syntax
| |
s610274891 | p02398 | u463783070 | 1458992547 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b,c = map(int, input().split())
print [i for i in range(a,b+1) if c % i == 0] | File "/tmp/tmp8q1iau_y/tmpvcd73xku.py", line 3
print [i for i in range(a,b+1) if c % i == 0]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s541908278 | p02398 | u463783070 | 1458992692 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a,b,c = map(int, input().split())
print i for i in range(a,b+1):
if c % i == 0 | File "/tmp/tmpnfbvytcs/tmpkcq3k2th.py", line 2
print i for i in range(a,b+1):
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s547439655 | p02398 | u463783070 | 1459321954 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | a,b,c = map(int,input().split())
count = 0
for i in range(a,b+1) :
d = c % i
if d == 0 :
count = count +1
print count | File "/tmp/tmpmv5asor9/tmppkwyixos.py", line 7
print count
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s356949841 | p02398 | u463783070 | 1459322156 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | a,b,c = map(int,input().split())
count = 0
for i in range(a,b+1) :
d = c % i
if d == 0 :
count = count +1
print (count) | File "/tmp/tmpfnn7idb7/tmp6whfss8v.py", line 5
if d == 0 :
IndentationError: unexpected indent
| |
s423187682 | p02398 | u463783070 | 1459322226 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | a,b,c = map(int,input().split())
count = 0
for i in range(a,b+1) :
d = c % i
if d == 0 :
count += 1
print (count) | File "/tmp/tmp30as9gck/tmpdjnhti9p.py", line 5
if d == 0 :
IndentationError: unexpected indent
| |
s690465027 | p02398 | u077284614 | 1461237590 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a, b, c = map(int,input().split())
d = 0
for i in(range(a,b):
if i % c == 0:
d+=1
else:
pass
print(d)
| File "/tmp/tmpuip6jp8g/tmpu1c9heii.py", line 3
for i in(range(a,b):
^
SyntaxError: invalid syntax
| |
s591875882 | p02398 | u077284614 | 1461237783 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a, b, c = map(int,input().split())
d = 0
for i in(range(a,b+1))
if c % i == 0:
d+=1
else:
pass
print(d) | File "/tmp/tmpwd1lzb29/tmpd_rnklfa.py", line 3
for i in(range(a,b+1))
^
SyntaxError: expected ':'
| |
s864854814 | p02398 | u077284614 | 1461237796 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | a, b, c = map(int,input().split())
d = 0
for i in(range(a,b+1))
if c % i == 0:
d+=1
print(d) | File "/tmp/tmpd8ioqnmd/tmpsuodds3q.py", line 3
for i in(range(a,b+1))
^
SyntaxError: expected ':'
| |
s110459209 | p02398 | u178329845 | 1462110934 | Python | Python | py | Runtime Error | 0 | 0 | 54 | import sys
while True:
print "PENIS!!!"*sys.maxint | File "/tmp/tmpvje4km92/tmp8m338w9_.py", line 3
print "PENIS!!!"*sys.maxint
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s456131788 | p02398 | u178329845 | 1462111233 | Python | Python | py | Runtime Error | 0 | 0 | 137 | import sys
num = sys.maxint
for i in range(num):
for j in range(num):
for k in range(num):
print "PENIS!!!!!"*num | File "/tmp/tmpfh7zgh2j/tmp0wxf_5eq.py", line 6
print "PENIS!!!!!"*num
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s476640086 | p02398 | u454259029 | 1464760960 | Python | Python3 | py | Runtime Error | 0 | 0 | 204 | a,b,c = map(int,input().split(" "))
if a==b and a==c:
print(1)
ptn = 1
if a==b and a!=c:
print(1)
ptn=2
cnt = 0
for i in range(a,b):
if c%i == 0:
cnt += 1
if ptn != 1 and ptn != 2:
print(cnt) | Traceback (most recent call last):
File "/tmp/tmp75vmt0gz/tmpjf7p3a3d.py", line 1, in <module>
a,b,c = map(int,input().split(" "))
^^^^^^^
EOFError: EOF when reading a line
| |
s764144336 | p02398 | u671553883 | 1469599033 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a, b ,c = [int(i) for i in input().split()]
a for i in(1, 10001):
b for i in(1, 10001):
c = a == b
| File "/tmp/tmpxru2nhc4/tmp35a0rny9.py", line 3
a for i in(1, 10001):
^^^
SyntaxError: invalid syntax
| |
s015558335 | p02398 | u131984977 | 1469599081 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b, c = [input(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | Traceback (most recent call last):
File "/tmp/tmpok01un54/tmpfo2_2ppd.py", line 1, in <module>
a, b, c = [input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s244632147 | p02398 | u628732336 | 1469599110 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | a, b, c = [int(i) for i in input()].split()]
count = 0
for i in range(a, b + 1):
if c % 1 ==0:
count += 1
print(count) | File "/tmp/tmpoqv2j1qf/tmplgbjnk5_.py", line 1
a, b, c = [int(i) for i in input()].split()]
^
SyntaxError: unmatched ']'
| |
s020327932 | p02398 | u085472528 | 1469599124 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b, c = [input(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | Traceback (most recent call last):
File "/tmp/tmpwjhymz6v/tmpgz3b_d62.py", line 1, in <module>
a, b, c = [input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s748499942 | p02398 | u628732336 | 1469599126 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | (a, b, c) = [int(i) for i in input()].split()]
count = 0
for i in range(a, b + 1):
if c % 1 ==0:
count += 1
print(count) | File "/tmp/tmp48vocf9_/tmpbjs1bp8k.py", line 1
(a, b, c) = [int(i) for i in input()].split()]
^
SyntaxError: unmatched ']'
| |
s269922695 | p02398 | u600195957 | 1469599170 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a, b, c = [int(i) for i input().split()]
total = 0
for a in range(a, b+1)
if c % a == 0:
total += 1
print(total) | File "/tmp/tmp7we8mvwy/tmpr1_mbtlc.py", line 1
a, b, c = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s859001942 | p02398 | u600195957 | 1469599190 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a, b, c = [int(i) for i input().split()]
total = 0
for d in range(a, b+1)
if c % d == 0:
total += 1
print(total) | File "/tmp/tmp5h5n9tia/tmp2zzxib1q.py", line 1
a, b, c = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s025553880 | p02398 | u600195957 | 1469599220 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | a, b, c = [int(i) for i in input().split()]
total = 0
for d in range(a, b+1)
if c % d == 0:
total += 1
print(total) | File "/tmp/tmpczqw3cyx/tmp7os6dchk.py", line 4
for d in range(a, b+1)
^
SyntaxError: expected ':'
| |
s030792930 | p02398 | u661284763 | 1469599255 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | a, b c = [input(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | File "/tmp/tmp_ojmfrsv/tmpsaju_rz9.py", line 1
a, b c = [input(i) for i in input().split()]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s313795567 | p02398 | u661284763 | 1469599306 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | a, b c = [int(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | File "/tmp/tmppj785gha/tmp4vf3y1dl.py", line 1
a, b c = [int(i) for i in input().split()]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s021735979 | p02398 | u085472528 | 1469599318 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b, c = [input(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | Traceback (most recent call last):
File "/tmp/tmp9sgxbx4m/tmpvczyxqvt.py", line 1, in <module>
a, b, c = [input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s928716867 | p02398 | u498041957 | 1469599320 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | a, b, c = [input(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
a == c % d
if a == 0:
total += 1
print(total) | File "/tmp/tmpj4cfz2vn/tmpjpnudm5v.py", line 8
total += 1
^
IndentationError: expected an indented block after 'if' statement on line 7
| |
s469687594 | p02398 | u264632995 | 1469599322 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | a,b,c =[input(i) for i in input().split()]
total = 0
for d in range(a,b + 1):
if c % d == 0:
tptal += 1
print(total) | Traceback (most recent call last):
File "/tmp/tmpo0x5e8j2/tmpugypk73h.py", line 1, in <module>
a,b,c =[input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s926776290 | p02398 | u498041957 | 1469599340 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | a, b, c = [input(i) for i in input().split()]
total = 0
for a in range(a, b + 1):
a == c % d
if a == 0:
total += 1
print(total) | File "/tmp/tmpzdg0f4hw/tmphl1t0q6f.py", line 8
total += 1
^
IndentationError: expected an indented block after 'if' statement on line 7
| |
s371813701 | p02398 | u382316013 | 1469599340 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | a, b, c = [input(i) for i in input().split())
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | File "/tmp/tmposwv6i4r/tmpemkx66tv.py", line 1
a, b, c = [input(i) for i in input().split())
^
SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
| |
s590870688 | p02398 | u264632995 | 1469599356 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | a,b,c =[input(i) for i in input().split()]
total = 0
for d in range(a,b + 1):
if c % d == 0:
total += 1
print(total) | Traceback (most recent call last):
File "/tmp/tmpj87sh0cz/tmpeed4r73u.py", line 1, in <module>
a,b,c =[input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s720542936 | p02398 | u498041957 | 1469599382 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a, b, c = [input(i) for i in input().split()]
total = 0
for a in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | File "/tmp/tmp4h10q6kv/tmppaaxt8y4.py", line 7
total += 1
^
IndentationError: expected an indented block after 'if' statement on line 6
| |
s162057332 | p02398 | u498041957 | 1469599421 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | a, b, c = [int(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | File "/tmp/tmpla1zdjj6/tmpf_g_u_e5.py", line 7
total += 1
^
IndentationError: expected an indented block after 'if' statement on line 6
| |
s929786852 | p02398 | u628732336 | 1469599424 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b, c = [int(i) for i in input().split()]
total = 0
for i in range(a, b + 1):
if c % 1 == 0:
totale += 1
print(totale) | Traceback (most recent call last):
File "/tmp/tmp0il_y528/tmpup68yi84.py", line 1, in <module>
a, b, c = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s775695447 | p02398 | u644636020 | 1469599461 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b, c = [input(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | Traceback (most recent call last):
File "/tmp/tmp48xe_o_1/tmp3or0chlt.py", line 1, in <module>
a, b, c = [input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s312695492 | p02398 | u382316013 | 1469599500 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b, c = [int(i) for i in input().split())
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | File "/tmp/tmprp01i_kj/tmp8ppou_vr.py", line 1
a, b, c = [int(i) for i in input().split())
^
SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
| |
s666328959 | p02398 | u514745787 | 1469599632 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b, c = [input(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | Traceback (most recent call last):
File "/tmp/tmp737luub5/tmpr1p3x7wl.py", line 1, in <module>
a, b, c = [input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s888280424 | p02398 | u514745787 | 1469599641 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b, c = [input(i) for i in input().split()]
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | Traceback (most recent call last):
File "/tmp/tmpxjc2l4vi/tmpgafwhmn9.py", line 1, in <module>
a, b, c = [input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s346356860 | p02398 | u382316013 | 1469599657 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a, b, c = [int(i) for i in input().split())
total = 0
for d in range(a, b + 1):
if c % d == 0:
total += 1
print(total) | File "/tmp/tmp5k4se34h/tmp_z3ox3o3.py", line 1
a, b, c = [int(i) for i in input().split())
^
SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
| |
s111565974 | p02398 | u514745787 | 1469599716 | Python | Python3 | py | Runtime Error | 0 | 0 | 198 | while True:
??????????x, y = [int(i) for i in input().split()]
????
??????????if x == y == 0:
??????????????????break
????
??????????if x > y:
??????????????????x, y = y, x
????
??????????print(x,y) | File "/tmp/tmpmlsvc4w4/tmp3b_72x5f.py", line 2
??????????x, y = [int(i) for i in input().split()]
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s301534095 | p02398 | u514745787 | 1469599729 | Python | Python3 | py | Runtime Error | 0 | 0 | 198 | while True:
??????????x, y = [int(i) for i in input().split()]
????
??????????if x == y == 0:
??????????????????break
????
??????????if x > y:
??????????????????x, y = y, x
????
??????????print(x,y) | File "/tmp/tmp8swfh_eu/tmpzf5_8gaa.py", line 2
??????????x, y = [int(i) for i in input().split()]
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s185131668 | p02398 | u514745787 | 1469599871 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) | Traceback (most recent call last):
File "/tmp/tmpvqyy7mx8/tmpapf2mu13.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s141144976 | p02398 | u514745787 | 1469599909 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) | Traceback (most recent call last):
File "/tmp/tmptxh9m8a2/tmpl2uz3trv.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s778168132 | p02398 | u514745787 | 1469599945 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) | Traceback (most recent call last):
File "/tmp/tmpr5cj7xlr/tmpt_xv2_yz.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s647643092 | p02398 | u514745787 | 1469599952 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) | Traceback (most recent call last):
File "/tmp/tmpz_wxeggk/tmpgq79m0wn.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s632650393 | p02398 | u587193722 | 1469600342 | Python | Python3 | py | Runtime Error | 0 | 0 | 179 | a, b, c = [int(i) for i in input().split()]
bet = c - a
nums = 0
for i in range(1,b+1)
if b%i ==0 and bet%i ==0:
nums = nums + 1
else:
pass
print(nums) | File "/tmp/tmpkwtirkmg/tmpm9i7523y.py", line 4
for i in range(1,b+1)
^
SyntaxError: expected ':'
| |
s770639653 | p02398 | u514745787 | 1469600610 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) | Traceback (most recent call last):
File "/tmp/tmpqsc90r91/tmpgeq8vrz7.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s707923212 | p02398 | u514745787 | 1469600630 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) | Traceback (most recent call last):
File "/tmp/tmpwzoge81i/tmp3pumthsh.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s779533898 | p02398 | u514745787 | 1469600670 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) | Traceback (most recent call last):
File "/tmp/tmpao66ncyq/tmp9onm38jv.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s174756928 | p02398 | u587193722 | 1469600710 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | a, b, c = [int(i) for i in input().split()]
nums = 0
for i in range(a,c+1)
if b%i ==0 and bet%i ==0:
nums = nums + 1
else:
pass
print(nums) | File "/tmp/tmpu7z008b2/tmpwhixytlc.py", line 3
for i in range(a,c+1)
^
SyntaxError: expected ':'
| |
s352965715 | p02398 | u587193722 | 1469600740 | Python | Python3 | py | Runtime Error | 0 | 0 | 165 | a, b, c = [int(i) for i in input().split()]
nums = 0
for i in range(a,c+1)
if b%i ==0 and c%i ==0:
nums = nums + 1
else:
pass
print(nums) | File "/tmp/tmpvodsd5r0/tmpw436s43d.py", line 3
for i in range(a,c+1)
^
SyntaxError: expected ':'
| |
s307239665 | p02398 | u587193722 | 1469600775 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | a, b, c = [int(i) for i in input().split()]
nums = 0
for i in range(a,c+1)
if b%i ==0 :
nums = nums + 1
else:
pass
print(nums) | File "/tmp/tmpln8t2ld9/tmp0qn86tyh.py", line 3
for i in range(a,c+1)
^
SyntaxError: expected ':'
| |
s197751021 | p02398 | u587193722 | 1469600798 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | a, b, c = [int(i) for i in input().split()]
nums = 0
for i in range(a,c+1)
if i%b ==0 :
nums = nums + 1
else:
pass
print(nums) | File "/tmp/tmpwt80fcnn/tmpw5dij8su.py", line 3
for i in range(a,c+1)
^
SyntaxError: expected ':'
| |
s438463874 | p02398 | u587193722 | 1469600905 | Python | Python3 | py | Runtime Error | 0 | 0 | 164 | a, b, c = [int(i) for i in input().split()]
nums = 0
for i in range(a,c+1)
if i%b ==0 or b%i==0 :
nums = nums + 1
else:
pass
print(nums) | File "/tmp/tmpvz8swatn/tmp2y94apr2.py", line 3
for i in range(a,c+1)
^
SyntaxError: expected ':'
| |
s493808764 | p02398 | u747009765 | 1470713432 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a, b, c = [int(i) for i in input().split()]
count = 0
a =< b
for x in range(a,b):
if c % x == 0:
count += 1
print(count) | File "/tmp/tmpnpumpynl/tmpm6shlw0j.py", line 4
a =< b
^
SyntaxError: invalid syntax
| |
s382595043 | p02398 | u998435601 | 1470856655 | Python | Python | py | Runtime Error | 0 | 0 | 96 | a,b,c = map(int, raw_input().split())
t = 0
for n in range(a,b+1)
if c%n == 0:
t += 1
print t | File "/tmp/tmpstpoltxq/tmpvjmsnqu1.py", line 3
for n in range(a,b+1)
^
SyntaxError: expected ':'
| |
s191086937 | p02398 | u892219101 | 1473442451 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a,b,c=map(int,input().split())
d=0
for i in range(a,b+1)
if c%i==0:
d+=1
print(d) | File "/tmp/tmp6jf6a133/tmp3plwdn8m.py", line 3
for i in range(a,b+1)
^
SyntaxError: expected ':'
| |
s333885759 | p02398 | u086566114 | 1479305804 | Python | Python | py | Runtime Error | 0 | 0 | 165 | import sys
[a, b, c] = [int(x) for x in sys.stdin.readline()]
counter = 0
for value in range(a, b + 1):
if c / value == 0:
counter += 1
print(counter) | Traceback (most recent call last):
File "/tmp/tmpmxf6xbdo/tmp9k5sk3vd.py", line 3, in <module>
[a, b, c] = [int(x) for x in sys.stdin.readline()]
^^^^^^^^^
ValueError: not enough values to unpack (expected 3, got 0)
| |
s481972791 | p02398 | u982344959 | 1479963998 | Python | Python3 | py | Runtime Error | 0 | 0 | 159 | a,b,c =map(int,input().sprit())
count = 0:
for x in range(a, b + 1)
if c % x == 0:
# print(x,"ha ", c, "no yakusuu")
count += 1
print(count) | File "/tmp/tmp3cpa9vol/tmppfy0b6wr.py", line 3
count = 0:
^
SyntaxError: invalid syntax
| |
s939739631 | p02398 | u982344959 | 1479964098 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | a, b, c = map(int, input().sprit())
count = 0:
for x in range(a, b + 1)
if c % x == 0:
count += 1
print(count) | File "/tmp/tmpgh0bqsxd/tmp_3l8ld41.py", line 3
count = 0:
^
SyntaxError: invalid syntax
| |
s631199719 | p02398 | u982344959 | 1479964140 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | a, b, c = map(int, input().sprit())
count = 0:
for x in range(a, b + 1)
if c % x == 0:
count += 1
print(count) | File "/tmp/tmpmiqzqtty/tmpp8jytcca.py", line 3
count = 0:
^
SyntaxError: invalid syntax
| |
s388865007 | p02398 | u307520683 | 1486041732 | Python | Python | py | Runtime Error | 0 | 0 | 98 | a,b,c = map(int,raw_input().split())
for i in range(a,b):
if c % i == 0:
count += 1
print count | File "/tmp/tmpl9rn9f34/tmp3t1xdgo8.py", line 5
print count
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s916093024 | p02398 | u104171359 | 1486347500 | Python | Python3 | py | Runtime Error | 0 | 0 | 556 | #!usr/bin/env python3
def string_three_numbers_spliter():
a, b, c = [int(i) for i in input().split()]
return a, b, c
def count_nums_of_factors_of_c_in_a_and_b(a, b, c):
count = 0
# XXX Refactor the algorithm below as it is exhaustive and inefficient.
for i in range(1, c+1):
if (c % i == 0... | Traceback (most recent call last):
File "/tmp/tmp5h8trqw3/tmpk2hjyvcg.py", line 24, in <module>
main()
File "/tmp/tmp5h8trqw3/tmpk2hjyvcg.py", line 19, in main
a, b, c = string_two_numbers_spliter()
^^^^^^^^^^^^^^^^^^^^^^^^^^
NameError: name 'string_two_numbers_spliter' is not defined. Did you... | |
s845001894 | p02398 | u104171359 | 1486347534 | Python | Python3 | py | Runtime Error | 0 | 0 | 558 | #!usr/bin/env python3
def string_three_numbers_spliter():
a, b, c = [int(i) for i in input().split()]
return a, b, c
def count_nums_of_factors_of_c_in_a_and_b(a, b, c):
count = 0
# XXX Refactor the algorithm below as it is exhaustive and inefficient.
for i in range(1, c+1):
if (c % i == 0... | Traceback (most recent call last):
File "/tmp/tmp4qu_5kun/tmp3ecndz6p.py", line 24, in <module>
main()
File "/tmp/tmp4qu_5kun/tmp3ecndz6p.py", line 19, in main
a, b, c = string_three_numbers_spliter()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmp4qu_5kun/tmp3ecndz6p.py", line 4, in string_th... | |
s345977253 | p02398 | u104171359 | 1486348129 | Python | Python3 | py | Runtime Error | 0 | 0 | 558 | #!usr/bin/env python3
def string_three_numbers_spliter():
a, b, c = [int(i) for i in input().split()]
return a, b, c
def count_nums_of_factors_of_c_in_a_and_b(a, b, c):
count = 0
# XXX Refactor the algorithm below as it is exhaustive and inefficient.
for i in range(1, c+1):
if (c % i == 0... | Traceback (most recent call last):
File "/tmp/tmp4p48c9s4/tmpkw031nxv.py", line 24, in <module>
main()
File "/tmp/tmp4p48c9s4/tmpkw031nxv.py", line 19, in main
a, b, c = string_three_numbers_spliter()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmp4p48c9s4/tmpkw031nxv.py", line 4, in string_th... | |
s544090350 | p02398 | u104171359 | 1486348178 | Python | Python3 | py | Runtime Error | 0 | 0 | 482 | #!usr/bin/env python3
def string_three_numbers_spliter():
a, b, c = [int(i) for i in input().split()]
return a, b, c
def count_nums_of_factors_of_c_in_a_and_b(a, b, c):
count = 0
for i in range(1, c+1):
if (c % i == 0):
if i >= a and i <= b:
count += 1
return c... | Traceback (most recent call last):
File "/tmp/tmpj0dyzqnq/tmpx7agrq2w.py", line 23, in <module>
main()
File "/tmp/tmpj0dyzqnq/tmpx7agrq2w.py", line 18, in main
a, b, c = string_three_numbers_spliter()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpj0dyzqnq/tmpx7agrq2w.py", line 4, in string_th... | |
s237989111 | p02398 | u086566114 | 1488116083 | Python | Python | py | Runtime Error | 0 | 0 | 328 | # -*- coding: utf-8 -*-
import math
def prime_number_identifier(num):
for candidate in range(int())
return True
input_num = int(raw_input())
counter = 0
while counter < input_num:
candidate_number = int(raw_input())
if prime_number_identifier(candidate_number):
print candidate_number
coun... | File "/tmp/tmpoh8t_qeg/tmphfy9299a.py", line 5
for candidate in range(int())
^
SyntaxError: expected ':'
| |
s267137955 | p02398 | u606989659 | 1491300078 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | a,b,c = map(int,input().split())
if 1 <= a, b, c <= 10000 and a <= b:
l = [i for i in range(a,b+1) if c % a ==0]
print(len(l)) | File "/tmp/tmpi5vlv98x/tmp0827rl16.py", line 3
if 1 <= a, b, c <= 10000 and a <= b:
^
SyntaxError: invalid syntax
| |
s229125657 | p02398 | u645985665 | 1493603237 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | a, b, c = map(int, input().strip())
answer = 0
for i in range(a,b+1):
if c % i ==0:
answer += 1
print(answer) | Traceback (most recent call last):
File "/tmp/tmpt8ht6xbf/tmpb5pqzm1j.py", line 1, in <module>
a, b, c = map(int, input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s365029264 | p02398 | u213265973 | 1494249469 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | num = [int(n) for n in input().split(" ")]
a = num[1]
b = num[2]
c = num[3]
count = 0
for i in range(a, b+1):
if c % i == 0:
count += 1
| Traceback (most recent call last):
File "/tmp/tmp0yzfylne/tmp3k35n2v7.py", line 1, in <module>
num = [int(n) for n in input().split(" ")]
^^^^^^^
EOFError: EOF when reading a line
| |
s844363515 | p02398 | u213265973 | 1494249504 | Python | Python3 | py | Runtime Error | 0 | 0 | 171 | num = [int(n) for n in input().split(" ")]
a = num[1]
b = num[2]
c = num[3]
count = 0
for i in range(a, b+1):
if c % i == 0:
count += 1
print(count)
| Traceback (most recent call last):
File "/tmp/tmpxy_coj_b/tmphqmnp5x2.py", line 1, in <module>
num = [int(n) for n in input().split(" ")]
^^^^^^^
EOFError: EOF when reading a line
| |
s595725494 | p02398 | u688488162 | 1494396805 | Python | Python | py | Runtime Error | 0 | 0 | 134 | ,b,c = map(int,raw_input().split())
count = 0
for n in range(a,b+1):
if c % a == 0:
count += 1
a += 1
print('{0}'.format(count)) | File "/tmp/tmpj0j4v8m0/tmplf1da3sz.py", line 1
,b,c = map(int,raw_input().split())
^
SyntaxError: invalid syntax
| |
s680048146 | p02398 | u256678932 | 1495159818 | Python | Python3 | py | Runtime Error | 20 | 8104 | 220 | def count_divisors(a, b, c):
if a == b:
return (1 if c % a == 0 else 0)
return (1 if c % a == 0 else 0) + count_divisors(a+1, b, c)
a, b, c = map(int, input().split(' '))
print(count_divisors(a, b, c)) | Traceback (most recent call last):
File "/tmp/tmpeniqm1zy/tmpy4e0hnno.py", line 7, in <module>
a, b, c = map(int, input().split(' '))
^^^^^^^
EOFError: EOF when reading a line
| |
s970429159 | p02398 | u650790815 | 1495676963 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | a,b,c = map(int,input()split())
count = 0
for i in range(a,b+1):
d = c % i
if d == 0:
count += 1
print('%d' %count) | File "/tmp/tmpaxgxm8oe/tmp6g4eyzy2.py", line 1
a,b,c = map(int,input()split())
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s647040577 | p02398 | u650790815 | 1495677244 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b,c = map(int,input(),split())
print(len([x for x in range(a,b+1) if (c % x) == 0])) | Traceback (most recent call last):
File "/tmp/tmpxzdw3j9k/tmpr_vs1o4q.py", line 1, in <module>
a,b,c = map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s832337313 | p02398 | u580737984 | 1497510777 | Python | Python3 | py | Runtime Error | 0 | 0 | 334 | count = 0
a = b = c = ''
line = input()
while line[i] != ' ':
a = a + line[i]
i += 1
i += 1
while line[i] != ' ':
b = b + line[i]
i += 1
i += 1
while i < len(line):
c = c + line[i]
i += 1
a = int(a)
b = int(b)
c = int(c)
while a <= b:
if c%a == 0:
count += 1
a += 1... | Traceback (most recent call last):
File "/tmp/tmpp77ksy3b/tmpx9y2kj9m.py", line 5, in <module>
line = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s459577708 | p02398 | u050103511 | 1498032989 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a,b,c = map(int,input())
count = 0
for i in range(a,b+1):
if c % i == 0:
count += 1
print(count) | File "/tmp/tmpxkwkfmqk/tmp3o7zo9nj.py", line 5
count += 1
^
IndentationError: expected an indented block after 'if' statement on line 4
| |
s197434216 | p02398 | u050103511 | 1498033004 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | a,b,c = map(int,input())
count = 0
for i in range(a,b+1):
if c % i == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmppts5whup/tmpf9vcwwoy.py", line 1, in <module>
a,b,c = map(int,input())
^^^^^^^
EOFError: EOF when reading a line
| |
s485475432 | p02398 | u623827446 | 1498109756 | Python | Python3 | py | Runtime Error | 0 | 0 | 153 | a,b,c=map(int,input().split())
count=0
for i in range(a,b):
if c % i == 0:
count+=1
print(count)
| File "/tmp/tmpws2rynvy/tmpvxo9jy9w.py", line 1
a,b,c=map(int,input().split())
IndentationError: unexpected indent
| |
s967861251 | p02398 | u569585396 | 1498717070 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | N = input().split()
a = N[0]
b = N[1]
c = N[2]
count = 0
for i in range(a, b):
if c % i == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmp5nln6639/tmp7nnjzs67.py", line 1, in <module>
N = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s406827711 | p02398 | u569585396 | 1498717119 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | N = input().split()
a = N[0]
b = N[1]
c = N[2]
count = 0
for i in range(a, b):
if c % i == 0:
count += 1
print(count) | File "/tmp/tmp82wxm499/tmpplv0r7j8.py", line 11
print(count)
IndentationError: unexpected indent
| |
s975837314 | p02398 | u569585396 | 1498717464 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | N = input().split()
a = int(N{0})
b = int(N{1})
c = int(N{2})
count = 0
for i in range(a, b):
d = c % i
if d == 0:
count += 1
print(count) | File "/tmp/tmpnb5jcqsr/tmpjokl_ktb.py", line 3
a = int(N{0})
^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s674677949 | p02398 | u569585396 | 1498717616 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | N = input().split()
a = int(N[0])
b = int(N[1])
c = int(N[2])
count = 0
for i in range[a, b]:
d = c % i
if d == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmpmp1jb4v7/tmplm12wv0x.py", line 1, in <module>
N = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s504085726 | p02398 | u853619096 | 1500309426 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | z = int().split()
a=z[0]
b=z[1]
c=[2]
count=0
for i in range(a,b+1) :
if c%i == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmpjroc9phe/tmp2qtx1ooa.py", line 1, in <module>
z = int().split()
^^^^^^^^^^^
AttributeError: 'int' object has no attribute 'split'
| |
s490453385 | p02398 | u853619096 | 1500309460 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | z = int().split()
a=z[0]
b=z[1]
c=z[2]
count=0
for i in range(a,b+1) :
if c%i == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmpj6ox9ac4/tmp3axlgfwy.py", line 1, in <module>
z = int().split()
^^^^^^^^^^^
AttributeError: 'int' object has no attribute 'split'
| |
s622311632 | p02398 | u853619096 | 1500309582 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | a,b,c=int().split()
count=0
for i in range(a,b+1) :
if c%i == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmpxxz6jwg6/tmpwerjjjmd.py", line 1, in <module>
a,b,c=int().split()
^^^^^^^^^^^
AttributeError: 'int' object has no attribute 'split'
| |
s449868004 | p02398 | u853619096 | 1500309620 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | a,b,c=int().input.split()
count=0
for i in range(a,b+1) :
if c%i == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmp9fsj8z__/tmpuhcbv52t.py", line 1, in <module>
a,b,c=int().input.split()
^^^^^^^^^^^
AttributeError: 'int' object has no attribute 'input'
| |
s130997677 | p02398 | u853619096 | 1500309664 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | a,b,c=int(input()).split()
count=0
for i in range(a,b+1) :
if c%i == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmpd37e5klr/tmpi66jnji9.py", line 1, in <module>
a,b,c=int(input()).split()
^^^^^^^
EOFError: EOF when reading a line
| |
s202362967 | p02398 | u853619096 | 1500309770 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a,b,c=input().split()
count=0
for i in range(a,b+1) :
if c%i == 0:
count += 1
print(count) | Traceback (most recent call last):
File "/tmp/tmpiamw4x11/tmp8l94y0e9.py", line 1, in <module>
a,b,c=input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s969091884 | p02398 | u350064373 | 1500468097 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | a, b, c = map(int, input().split())
for i in range(a, b):
if i % c == 0:
result += str(c)+" "
print(result) | Traceback (most recent call last):
File "/tmp/tmp9yutqzke/tmp5c_g5ni_.py", line 1, in <module>
a, b, c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s443229257 | p02398 | u447009770 | 1500522556 | Python | Python3 | py | Runtime Error | 0 | 0 | 246 | ### 20.07.2017
x = []
a, b, c = map(int, input().split())
for i in range(a, b):
if c % i ==0:
x.append(i)
print(len(x))### 20.07.2017
x = []
a, b, c = map(int, input().split())
for i in range(a, b+1):
if c % i ==0:
x.append(i)
print(len(x)) | Traceback (most recent call last):
File "/tmp/tmpessz5cbr/tmphiyn5trd.py", line 3, in <module>
a, b, c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s633854245 | p02398 | u888737393 | 1500698519 | Python | Python3 | py | Runtime Error | 0 | 0 | 373 | a, b, N = list(map(int, input().split()))
divisors_list = []
for i in range(a,b):
divisor = N%i
if divisor == 0:
divisors_list.append(divisor)
print(len(divisors_list))
a, b, N = list(map(int, input().split()))
divisors_list = []
for i in range(a,b):
divisor = N%i
if divisor == 0:
div... | Traceback (most recent call last):
File "/tmp/tmpj7d93ktc/tmp1hlc2ehw.py", line 1, in <module>
a, b, N = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s894257752 | p02398 | u853619096 | 1502512507 | Python | Python3 | py | Runtime Error | 0 | 0 | 145 | while True:
a=list(map(int,input().split()))
if a[0]==0 and a[1]==0:
break
a.sort()
print("{} {}".format(a[0],a[1]))
| Traceback (most recent call last):
File "/tmp/tmp2_1b8a_s/tmp1q50865g.py", line 2, in <module>
a=list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s984664266 | p02398 | u853619096 | 1502512528 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a,b,c=map(int,input().split())
d=[i for i in range(a,b+1)]
count=0
for i in range(len(d)):
if c%i==0:
count+=1
print(count) | Traceback (most recent call last):
File "/tmp/tmpwn6lg5du/tmpwauvw90p.py", line 1, in <module>
a,b,c=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s447599247 | p02398 | u316697096 | 1503145799 | Python | Python | py | Runtime Error | 0 | 0 | 108 | a,b,c= map(int,raw_input().split())
for i in range(a,b+1):
if c%i==0:
n += 1
i += 1
print n | File "/tmp/tmpuldnbree/tmpw0rd5g8z.py", line 7
print n
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s838228325 | p02398 | u450020188 | 1503551952 | Python | Python3 | py | Runtime Error | 0 | 0 | 203 | import sympy as sym
import sys
a, b, c = map(int, sys.stdin.readline.split())
d_list = sym.divisors(c)
f_list = []
for i in range (a, b):
if i in d_list:
f_list.append(i)
print(len(f_list)) | Traceback (most recent call last):
File "/tmp/tmp3wa7hm_d/tmpq_1rmx7b.py", line 4, in <module>
a, b, c = map(int, sys.stdin.readline.split())
^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
| |
s053564809 | p02398 | u450020188 | 1503552751 | Python | Python3 | py | Runtime Error | 0 | 0 | 192 | import sympy as sym
import sys
a, b, c = map(int, input().split())
d_list = sym.divisors(c)
f_list = []
for i in range (a, b):
if i in d_list:
f_list.append(i)
print(len(f_list)) | Traceback (most recent call last):
File "/tmp/tmp7vr97ks_/tmp_fizwbq6.py", line 4, in <module>
a, b, c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s489785996 | p02398 | u450020188 | 1503552984 | Python | Python3 | py | Runtime Error | 0 | 0 | 192 | import sympy as sym
import sys
a, b, c = map(int, input().split())
d_list = sym.divisors(c)
f_list = []
for i in range (a, b):
if i in d_list:
f_list.append(i)
print(len(f_list)) | Traceback (most recent call last):
File "/tmp/tmp03606vcm/tmp5eljx4pt.py", line 4, in <module>
a, b, c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s073860296 | p02398 | u450020188 | 1503553132 | Python | Python3 | py | Runtime Error | 0 | 0 | 194 | import sympy as sym
import sys
a, b, c = map(int, input().split())
d_list = sym.divisors(c)
f_list = []
for i in range (a, b+1):
if i in d_list:
f_list.append(i)
print(len(f_list)) | Traceback (most recent call last):
File "/tmp/tmph6caw4eg/tmpc3iqupk3.py", line 4, in <module>
a, b, c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s943657800 | p02398 | u544943822 | 1503643574 | Python | Python | py | Runtime Error | 0 | 0 | 126 | a,b,c = map(int, raw_input().split)
count=0
for x in range(a,b+1):
if c%x == 0:
print(str(count+=1) + x)
| File "/tmp/tmpigwlcmpl/tmp7ivc_mdb.py", line 6
print(str(count+=1) + x)
^^
SyntaxError: invalid syntax
| |
s837579327 | p02398 | u544943822 | 1503643639 | Python | Python | py | Runtime Error | 0 | 0 | 128 | a,b,c = map(int, raw_input().split)
count=0
for x in range(a,b+1):
if c%x == 0:
print(str(count += 1) + x)
| File "/tmp/tmpydco1z3u/tmp5nsjyy1b.py", line 6
print(str(count += 1) + x)
^^
SyntaxError: invalid syntax
| |
s538564063 | p02398 | u544943822 | 1503643957 | Python | Python | py | Runtime Error | 0 | 0 | 132 | a,b,c = map(int, raw_input().split)
count=0
for x in range(a,b+1):
if c%x == 0:
count += 1
print ('x')
| Traceback (most recent call last):
File "/tmp/tmpzod8u61q/tmpchs0ezuq.py", line 1, in <module>
a,b,c = map(int, raw_input().split)
^^^^^^^^^
NameError: name 'raw_input' is not defined
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.