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
s015074753
p02398
u893058769
1540456910
Python
Python3
py
Runtime Error
0
0
118
counter=0 a,b,c=map(int,input().split()) for i in range(a,b): if((c%i)==0) counter=counter+1 print(f"{counter}")
File "/tmp/tmp4h9gyopt/tmpzrleb2h5.py", line 4 if((c%i)==0) counter=counter+1 ^^^^^^^ SyntaxError: invalid syntax
s109716585
p02398
u035064179
1540457169
Python
Python3
py
Runtime Error
0
0
126
a, b, c = map(int, input().split()) for i in range(a, b + 1): if c % i == 0: count = int(count + 1) print(count)
Traceback (most recent call last): File "/tmp/tmpwn95ym5_/tmp59u84nq_.py", line 1, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s680962329
p02398
u861678859
1540458116
Python
Python3
py
Runtime Error
0
0
120
j = 0 input = input() a,b,c = map(int, input.split()) for i in range(a,b + 1) if c % i == 0 j += 1 print(j)
File "/tmp/tmpkt05i3zp/tmpt732804j.py", line 4 for i in range(a,b + 1) ^ SyntaxError: expected ':'
s776592034
p02398
u861678859
1540458179
Python
Python3
py
Runtime Error
0
0
121
j = 0 input = input() a,b,c = map(int, input.split()) for i in range(a,b + 1): if c % i == 0 j += 1 print(j)
File "/tmp/tmpwmew3f6j/tmpf5jjj85m.py", line 5 if c % i == 0 ^ SyntaxError: expected ':'
s440752879
p02398
u901205536
1540780875
Python
Python3
py
Runtime Error
0
0
134
a, b, c = [int(i) for i in input()rstrip().split(" ")] cnt = 0 for i in range(a, b+1): if c % i == 0: cnt += 1 print(cnt)
File "/tmp/tmpahxtvr9i/tmpw9fh5nsb.py", line 1 a, b, c = [int(i) for i in input()rstrip().split(" ")] ^^^^^^ SyntaxError: invalid syntax
s029185188
p02398
u184749404
1541162416
Python
Python3
py
Runtime Error
0
0
34
a,b,c = map(int,Input().split())
Traceback (most recent call last): File "/tmp/tmpv9bo1_w6/tmplhdq411q.py", line 1, in <module> a,b,c = map(int,Input().split()) ^^^^^ NameError: name 'Input' is not defined. Did you mean: 'input'?
s715247397
p02398
u293957970
1541227189
Python
Python3
py
Runtime Error
0
0
78
a,b,c=map(int,input().aplit()) print(len([x for x in range(a,b+1)if c%x==0]))
Traceback (most recent call last): File "/tmp/tmpldbrqvt7/tmpdnruvped.py", line 1, in <module> a,b,c=map(int,input().aplit()) ^^^^^^^ EOFError: EOF when reading a line
s989271527
p02398
u962909487
1545814780
Python
Python3
py
Runtime Error
0
0
107
p = 0 a,b,c = map(int,input().split()) for (int x = a; x <= b; x++): if c%x=0: p += 1 print(p)
File "/tmp/tmpakze6hho/tmpa9vlle9n.py", line 3 for (int x = a; x <= b; x++): ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s078640770
p02398
u962909487
1545814818
Python
Python3
py
Runtime Error
0
0
129
p = 0 a,b,c = map(int,input().split()) for (int x = a; x <= b; x++): if c%x=0: p += 1 else: p=p print(p)
File "/tmp/tmpoflxgfrr/tmpc0wqdn7x.py", line 3 for (int x = a; x <= b; x++): ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s892337220
p02398
u962909487
1545815121
Python
Python3
py
Runtime Error
0
0
108
p = 0 a,b,c = map(int,input().split()) for (int x = a; x <= b; x++): if c%x==0: p += 1 print(p)
File "/tmp/tmpd0i741wp/tmp2p48hi5e.py", line 3 for (int x = a; x <= b; x++): ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s882760350
p02398
u013132149
1546169391
Python
Python3
py
Runtime Error
0
0
102
a,b,c = map(int,input().split()) for a in range(b): if c%a==0: count++ print(count)
File "/tmp/tmpm17f6g_8/tmp0s3k_uei.py", line 4 count++ ^ SyntaxError: invalid syntax
s722490830
p02398
u498462680
1546255623
Python
Python3
py
Runtime Error
0
0
137
a,b,c = [for int(i) in input().split()] i=0 for i in list(range(a,b+1,1): if c % i == 0: i = i+1 else: print(i)
File "/tmp/tmpo539s2zy/tmpbvvx6keh.py", line 1 a,b,c = [for int(i) in input().split()] ^^^ SyntaxError: invalid syntax
s214691617
p02398
u498462680
1546255816
Python
Python3
py
Runtime Error
0
0
139
a,b,c = [int(i) for i in input().split()] i=0 for i in list(range(a,b+1,1): if c % i == 0: i = i+1 else: print(i)
File "/tmp/tmprgfdu2up/tmpl4r1qzpd.py", line 3 for i in list(range(a,b+1,1): ^ SyntaxError: invalid syntax
s167807892
p02398
u498462680
1546255828
Python
Python3
py
Runtime Error
0
0
140
a,b,c = [int(i) for i in input().split()] i=0 for i in list(range(a,b+1,1)): if c % i == 0: i = i+1 else: print(i)
File "/tmp/tmp53oljg81/tmpmdlm2765.py", line 8 print(i) IndentationError: expected an indented block after 'else' statement on line 6
s642981230
p02398
u498462680
1546255842
Python
Python3
py
Runtime Error
0
0
134
a,b,c = [int(i) for i in input().split()] i=0 for i in range(a,b+1,1): if c % i == 0: i = i+1 else: print(i)
File "/tmp/tmpaxcy1hp4/tmp5xxnrhv8.py", line 8 print(i) IndentationError: expected an indented block after 'else' statement on line 6
s138018132
p02398
u175224634
1551535969
Python
Python3
py
Runtime Error
0
0
118
count = 0 a, b, c = map(int, input().split()) for i in range(a,b) if i % c ==0: count += 1 print(f'{c}')
File "/tmp/tmpoolw0l34/tmpqz7u8uw6.py", line 3 for i in range(a,b) ^ SyntaxError: expected ':'
s440539041
p02398
u175224634
1551536043
Python
Python3
py
Runtime Error
0
0
122
count = 0 a, b, c = map(int, input().split()) for i in range(a,b) if c % i ==0: count += 1 print(f'{count}')
File "/tmp/tmpuxkeorub/tmpd3if7hb1.py", line 3 for i in range(a,b) ^ SyntaxError: expected ':'
s447240981
p02398
u277375424
1551581201
Python
Python3
py
Runtime Error
0
0
120
a,b,c = map(int,input().split()) count = 0 for i in range(a:b-1): if c % i == 0: count +=1 print(count)
File "/tmp/tmpxczdxhlu/tmpwa885mb4.py", line 3 for i in range(a:b-1): ^ SyntaxError: invalid syntax
s734595829
p02398
u277375424
1551581989
Python
Python3
py
Runtime Error
0
0
120
a,b,c = map(int,input().split()) count = 0 for i in range(a:b+1): if c % i == 0: count +=1 print(count)
File "/tmp/tmpiaskqigl/tmpsshpct6g.py", line 3 for i in range(a:b+1): ^ SyntaxError: invalid syntax
s936137503
p02398
u277375424
1551582031
Python
Python3
py
Runtime Error
0
0
116
a,b,c = map(int,input().split()) count = 0 for i in range(a:b+1): if c % i == 0: count +=1 print(count)
File "/tmp/tmpps3w38hn/tmpg8e2t2hd.py", line 3 for i in range(a:b+1): ^ SyntaxError: invalid syntax
s945291092
p02398
u928633434
1555812839
Python
Python3
py
Runtime Error
0
0
177
while True: x,y = (int(x) for x in input().split()) if x == 0 and y == 0: break if x < y: print (str(x) + " " + str(y)) else: print (str(y) + " " + str(x))
Traceback (most recent call last): File "/tmp/tmpbnbd96_p/tmpho7wmjtv.py", line 2, in <module> x,y = (int(x) for x in input().split()) ^^^^^^^ EOFError: EOF when reading a line
s816479369
p02398
u037441960
1556027753
Python
Python3
py
Runtime Error
0
0
133
a, b. c = map(int, input().split()) i = a j = 0 while(a <= i and i <= b) : if(c % i == 0) : j += 0 else : pass print(j)
Traceback (most recent call last): File "/tmp/tmpn6xp6yp0/tmpio4wvriz.py", line 1, in <module> a, b. c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s470300564
p02398
u037441960
1556027815
Python
Python3
py
Runtime Error
0
0
139
a, b. c = map(int, input().split()) i = a j = 0 if(a <= i and i <= b) : if(c % i == 0) : j += 0 else : pass else : print(j)
Traceback (most recent call last): File "/tmp/tmpqv2sez01/tmpm9j4rxso.py", line 1, in <module> a, b. c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s305351692
p02398
u037441960
1556027842
Python
Python3
py
Runtime Error
0
0
139
a, b. c = map(int, input().split()) i = a j = 0 if(a <= i and i <= b) : if(c % i == 0) : j += 1 else : pass else : print(j)
Traceback (most recent call last): File "/tmp/tmprqtu4xjf/tmp1tz9gcai.py", line 1, in <module> a, b. c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s116549922
p02398
u037441960
1556027871
Python
Python3
py
Runtime Error
0
0
152
a, b. c = map(int, input().split()) i = a j = 0 if(a <= i and i <= b) : if(c % i == 0) : i += 1 j += 1 else : i += 1 else : print(j)
Traceback (most recent call last): File "/tmp/tmpm6dpg64k/tmp8ipj4wr7.py", line 1, in <module> a, b. c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s667578719
p02398
u037441960
1556027952
Python
Python3
py
Runtime Error
0
0
151
a, b, c = map(int, input().split()) i = a j = 0 if(a <= i and i <= b) : if(c % i = 0) : i += 1 j += 1 else : i += 1 else : print(j)
File "/tmp/tmpm_ydfm_i/tmphno95so_.py", line 5 if(c % i = 0) : ^^^^^ SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?
s926466962
p02398
u651717882
1556037202
Python
Python3
py
Runtime Error
0
0
76
a,b,c = input().split() a = int(a) b= int(b) c=int(c) for x in range(a,b)
File "/tmp/tmpxdziw4t8/tmpn_ycvr68.py", line 5 for x in range(a,b) ^ SyntaxError: expected ':'
s678171789
p02398
u651717882
1556037784
Python
Python3
py
Runtime Error
0
0
128
a,b,c = input().split() a = int() b= int() c=int() aaa = 0 for x in range(a,b+1): if x%c == 0: aaa+=1 print(aaa)
Traceback (most recent call last): File "/tmp/tmp7lbmcskj/tmpdts6b55s.py", line 1, in <module> a,b,c = input().split() ^^^^^^^ EOFError: EOF when reading a line
s402466583
p02398
u482227082
1556411774
Python
Python3
py
Runtime Error
0
0
106
a,b,c = map(i, input().split()) ret = 0 for i in range(a,b+1): if c % i == 0 ret++ print(ret)
File "/tmp/tmp8jvnc27u/tmppe601uia.py", line 4 if c % i == 0 ^ SyntaxError: expected ':'
s717913546
p02398
u482227082
1556411784
Python
Python3
py
Runtime Error
0
0
107
a,b,c = map(i, input().split()) ret = 0 for i in range(a,b+1): if c % i == 0: ret++ print(ret)
File "/tmp/tmpyao6cmoz/tmp2iz2h0v_.py", line 5 ret++ ^ SyntaxError: invalid syntax
s495325843
p02398
u482227082
1556411801
Python
Python3
py
Runtime Error
0
0
110
a,b,c = map(i, input().split()) ret = 0 for i in range(a,b+1): if c % i == 0: ret += 1 print(ret)
Traceback (most recent call last): File "/tmp/tmpm62n6yk8/tmpl89c005n.py", line 1, in <module> a,b,c = map(i, input().split()) ^ NameError: name 'i' is not defined. Did you mean: 'id'?
s373172222
p02398
u313600138
1556542249
Python
Python3
py
Runtime Error
0
0
64
a,b = map(int, input().split()) d=a//b r=a%b f=a/b print(d,r,f)
Traceback (most recent call last): File "/tmp/tmp3zrh08e2/tmp4fy3kbty.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s844676486
p02398
u630518143
1556543244
Python
Python3
py
Runtime Error
0
0
464
nums = [] while True: num =[int(e) for e in input().split()] if num[0]==0 and num[1]==0 and num[2]==0: break nums.append(num) for i in range(len(nums)): yakusuu = [] yakusuu_count = 0 for j in range(1,nums[i][2]+1): if nums[i][2]%j== 0: yakusuu.append(j) for ...
Traceback (most recent call last): File "/tmp/tmpdcx6_c6a/tmpzrd72zvg.py", line 3, in <module> num =[int(e) for e in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s957847382
p02398
u839788696
1559364875
Python
Python3
py
Runtime Error
0
0
147
a,b,c = map(int, input().split()) array =[] l = b-a for i in range(l): n = c %i; i +=1 if n ==0: array.append(i) print(len(array))
Traceback (most recent call last): File "/tmp/tmpzcbndy3k/tmpvmiatbhq.py", line 1, in <module> a,b,c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s194753250
p02398
u327972099
1409573614
Python
Python3
py
Runtime Error
0
0
82
count = 0 for i in range(x[0], x[1]): if x[2] % i == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmpxhzpef7p/tmpz_px7hs6.py", line 2, in <module> for i in range(x[0], x[1]): ^ NameError: name 'x' is not defined
s796263189
p02398
u017764209
1416930639
Python
Python
py
Runtime Error
0
0
115
a,b,c = map(int,raw_input().split()) for x in range(a,b): if c % x==0: print x i += 1 print i
File "/tmp/tmp6zhl27_e/tmp5qjl_onr.py", line 5 print x ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s266073828
p02398
u672822075
1418911433
Python
Python3
py
Runtime Error
0
0
100
count = 0 a,b,c = map(int,input().split()) for i in range(a,b+1) if c%i==0: count+=1 print(count)
File "/tmp/tmp0js9rt5c/tmpy4g777m8.py", line 3 for i in range(a,b+1) ^ SyntaxError: expected ':'
s966882198
p02398
u297342993
1422409419
Python
Python3
py
Runtime Error
0
0
129
(a, b, c) = [int(i) for i in input().rstrip().split()] count = 0 for x in range(a, b + 1) if c % x == 0: count++ print(count)
File "/tmp/tmpoiy4k9nc/tmpfcm3c2ai.py", line 4 for x in range(a, b + 1) ^ SyntaxError: expected ':'
s623355055
p02398
u297342993
1422409458
Python
Python3
py
Runtime Error
0
0
130
(a, b, c) = [int(i) for i in input().rstrip().split()] count = 0 for x in range(a, b + 1): if c % x == 0: count++ print(count)
File "/tmp/tmp07nk8tz3/tmprp0o1s5w.py", line 6 count++ ^ SyntaxError: invalid syntax
s890513966
p02398
u823030818
1422409532
Python
Python3
py
Runtime Error
0
0
122
(a, b, c) [int(x) for x in input().split()] for d in range(a, b + 1): if c % d == 0: count += 1 print(count)
File "/tmp/tmp1813fa7p/tmprv417124.py", line 1 (a, b, c) [int(x) for x in input().split()] ^^^ SyntaxError: invalid syntax
s859614647
p02398
u823030818
1422409607
Python
Python3
py
Runtime Error
0
0
122
(a, b, c) [int(x) for x in input().split()] for d in range(a, b + 1): if c % d == 0: count += 1 print(count)
File "/tmp/tmp8bgnckp7/tmp49j_9zqq.py", line 1 (a, b, c) [int(x) for x in input().split()] ^^^ SyntaxError: invalid syntax
s350119321
p02398
u823030818
1422409623
Python
Python3
py
Runtime Error
0
0
132
(a, b, c) [int(x) for x in input().split()] count = 0 for d in range(a, b + 1): if c % d == 0: count += 1 print(count)
File "/tmp/tmp0m1t7at7/tmpx9hna944.py", line 1 (a, b, c) [int(x) for x in input().split()] ^^^ SyntaxError: invalid syntax
s780714326
p02398
u131984977
1422409624
Python
Python3
py
Runtime Error
0
0
132
(a, b, c) [int(x) for x in input().split()] count = 0 for d in range(a, b + 1): if c % d == 0: count += 1 print(count)
File "/tmp/tmptrnfitcm/tmpa7szett5.py", line 1 (a, b, c) [int(x) for x in input().split()] ^^^ SyntaxError: invalid syntax
s101533636
p02398
u193599711
1423026486
Python
Python3
py
Runtime Error
0
0
135
a, b, c = (int(i) for i in input().split()) divisor = 0 for i in range(a, b + 1): if c % i == 0: divisor += 1 print(str(divicor))
Traceback (most recent call last): File "/tmp/tmpznloslmz/tmpd7xci_2e.py", line 1, in <module> a, b, c = (int(i) for i in input().split()) ^^^^^^^ EOFError: EOF when reading a line
s979747792
p02398
u682755774
1431807951
Python
Python
py
Runtime Error
0
0
116
#coding:UTF-8 a = [] a,b,c = map(int,raw_input().split()) for i in range(a,b): if c % i == 0 n += 1 print n
File "/tmp/tmp857cai_v/tmpowh3twxe.py", line 6 if c % i == 0 ^ SyntaxError: expected ':'
s262657925
p02398
u682755774
1431807962
Python
Python
py
Runtime Error
0
0
118
#coding:UTF-8 a = [] a,b,c = map(int,raw_input().split()) for i in range(a,b+1): if c % i == 0 n += 1 print n
File "/tmp/tmplwun4jpj/tmpv4q6sr5e.py", line 6 if c % i == 0 ^ SyntaxError: expected ':'
s293883638
p02398
u682755774
1431807971
Python
Python
py
Runtime Error
0
0
111
#coding:UTF-8 a,b,c = map(int,raw_input().split()) for i in range(a,b+1): if c % i == 0 n += 1 print n
File "/tmp/tmppz6e4rd9/tmp2rqtviuo.py", line 5 if c % i == 0 ^ SyntaxError: expected ':'
s476129176
p02398
u682755774
1431807999
Python
Python
py
Runtime Error
0
0
112
#coding:UTF-8 a,b,c = map(int,raw_input().split()) for i in range(a,b+1): if c % i == 0: n += 1 print n
File "/tmp/tmp2uklullg/tmp3p_lg7eo.py", line 6 n += 1 ^ IndentationError: expected an indented block after 'if' statement on line 5
s563655010
p02398
u682755774
1431808063
Python
Python
py
Runtime Error
0
0
121
#coding:UTF-8 a = [] a,b,c = map(int,raw_input().split()) for i in range(a,b): if c % i == 0: n += 1 print n
File "/tmp/tmpbrdk6hrc/tmpb9l92o09.py", line 8 print n ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s275309756
p02398
u747594996
1433965017
Python
Python3
py
Runtime Error
0
0
209
def main(): numbers = input().split() a, b = map(int, numbers) d = a // b r = a % b f = a / b if d == 1: print(d) else: print('{0} {1} {2}'.format(d, r, f)) if __name__=="__main__": main()
Traceback (most recent call last): File "/tmp/tmp0qltdor4/tmpjm4zp66w.py", line 19, in <module> main() File "/tmp/tmp0qltdor4/tmpjm4zp66w.py", line 3, in main numbers = input().split() ^^^^^^^ EOFError: EOF when reading a line
s046927744
p02398
u747594996
1433965106
Python
Python3
py
Runtime Error
0
0
208
def main(): numbers = input().split() a, b = map(int, numbers) d = a // b r = a % b f = a / b if d == 1: print(d) else: print('{0} {1} {2}'.format(d, r, f)) if __name__=="__main__": main()
Traceback (most recent call last): File "/tmp/tmpv4vlliyf/tmpf1ib1_us.py", line 19, in <module> main() File "/tmp/tmpv4vlliyf/tmpf1ib1_us.py", line 3, in main numbers = input().split() ^^^^^^^ EOFError: EOF when reading a line
s255983279
p02398
u172616925
1435319486
Python
Python
py
Runtime Error
0
0
111
a, b, c = map(int, raw_input().split()) count = 0 for i in rang(a, b+1): c % i == 0 count += 1 print count
File "/tmp/tmp7pmj2cw9/tmp8660_u0b.py", line 6 print count ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s112741181
p02398
u172616925
1435319514
Python
Python
py
Runtime Error
0
0
116
a, b, c = map(int, raw_input().split()) count = 0 for i in rang(a, b+1): if c % i == 0 count += 1 print count
File "/tmp/tmpbu974ona/tmpv9rgytbt.py", line 4 if c % i == 0 ^ SyntaxError: expected ':'
s063301609
p02398
u172616925
1435319555
Python
Python
py
Runtime Error
0
0
117
a, b, c = map(int, raw_input().split()) count = 0 for i in rang(a, b+1): if c % i == 0: count += 1 print count
File "/tmp/tmp64kn3j69/tmpxdjoiil2.py", line 6 print count ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s251194086
p02398
u389610071
1436770098
Python
Python3
py
Runtime Error
0
0
99
count = 0 nums = list(range(a, b)) for i in nums: if i % c == 0: count + 1 print(count)
Traceback (most recent call last): File "/tmp/tmp66t3m3se/tmpkhelrq94.py", line 2, in <module> nums = list(range(a, b)) ^ NameError: name 'a' is not defined
s695310098
p02398
u389610071
1436770958
Python
Python3
py
Runtime Error
0
0
130
(a, b, c) = (int(i) for i in input().split()) count = 0 for i in range(a, b + 1) if c % i == 0: count + 1 print(count)
File "/tmp/tmpn3hij4n3/tmp22_9c_0o.py", line 3 for i in range(a, b + 1) ^ SyntaxError: expected ':'
s714728739
p02398
u389610071
1436771210
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 % i == 0: count + 1 print(count)
File "/tmp/tmpq47pz_k5/tmpf1nc4qx6.py", line 3 for i in range(a, (b + 1)) ^ SyntaxError: expected ':'
s399878037
p02398
u713218261
1436834334
Python
Python3
py
Runtime Error
0
0
156
(a, b, c) = [int(i) for i in input().split()] count = 0 for i in range(a, b): if (c % i) == 0: count = count + 1 print(count) ~
File "/tmp/tmp0nc41dkm/tmpkbvj1xcl.py", line 1 (a, b, c) = [int(i) for i in input().split()] IndentationError: unexpected indent
s236180649
p02398
u446066125
1437958309
Python
Python3
py
Runtime Error
0
0
133
(a, b, c) = [int(i) for i in input().split()] count = 0 for i in range(a, b + 1) if c % i == 0 count += 1 print(count)
File "/tmp/tmpv5blue85/tmpoe43qje7.py", line 5 for i in range(a, b + 1) ^ SyntaxError: expected ':'
s211784204
p02398
u446066125
1437958411
Python
Python3
py
Runtime Error
0
0
134
(a, b, c) = [int(i) for i in input().sprit()] count = 0 for i in range(a, b + 1) if c % i == 0 count += 1 print(count)
File "/tmp/tmpfbldxu_g/tmpm3xw41lf.py", line 5 for i in range(a, b + 1) ^ SyntaxError: expected ':'
s934796854
p02398
u446066125
1437958430
Python
Python3
py
Runtime Error
0
0
136
(a, b, c) = [int(i) for i in input().sprit()] count = 0 for i in range(a, b + 1) if c % i == 0 : count += 1 print(count)
File "/tmp/tmp43_58rp_/tmp4mog_w_q.py", line 5 for i in range(a, b + 1) ^ SyntaxError: expected ':'
s989594716
p02398
u446066125
1437958438
Python
Python3
py
Runtime Error
0
0
138
(a, b, c) = [int(i) for i in input().sprit()] count = 0 for i in range(a, b + 1) : if c % i == 0 : count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmpnunfph24/tmpj53m9b2_.py", line 1, in <module> (a, b, c) = [int(i) for i in input().sprit()] ^^^^^^^ EOFError: EOF when reading a line
s261121304
p02398
u446066125
1437958468
Python
Python3
py
Runtime Error
0
0
138
(a, b, c) = (int(i) for i in input().sprit()) count = 0 for i in range(a, b + 1) : if c % i == 0 : count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmpnpahman9/tmpapaqgief.py", line 1, in <module> (a, b, c) = (int(i) for i in input().sprit()) ^^^^^^^ EOFError: EOF when reading a line
s668363348
p02398
u916212924
1438000366
Python
Python3
py
Runtime Error
0
0
126
arr = map(int, raw_input().split()) ans = 0 for x in range(arr[0], arr[1] + 1): if arr[2] % x == 0: ans += 1 print(ans)
Traceback (most recent call last): File "/tmp/tmp21t7l6_j/tmpt6i86ujn.py", line 1, in <module> arr = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s505372362
p02398
u614711522
1438570537
Python
Python3
py
Runtime Error
0
0
126
( a, b, c) = input().split() count = 0 for i in range( c): if a % c == 0 and b % c == 0: count += 1 print( count)
Traceback (most recent call last): File "/tmp/tmp19oz8h84/tmp9bpiv36v.py", line 1, in <module> ( a, b, c) = input().split() ^^^^^^^ EOFError: EOF when reading a line
s522481856
p02398
u614711522
1438571058
Python
Python3
py
Runtime Error
0
0
144
( a, b, c) = [int(i) for i in input().split()) count = 0 for i in range( c): if a % c == 0 and b % c == 0: count += 1 print( count)
File "/tmp/tmp0kau9taw/tmp99jf1uvs.py", line 1 ( a, b, c) = [int(i) for i in input().split()) ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
s393640982
p02398
u614711522
1438571344
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): if c % n == 0: count += 1 print( count)
Traceback (most recent call last): File "/tmp/tmp_j2hbbvn/tmpfeb_zw0r.py", line 1, in <module> ( a, b, c) = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s323400540
p02398
u605525736
1439526787
Python
Python3
py
Runtime Error
0
0
42
(a, b, c) = [int(i) for i in input().split
File "/tmp/tmpqzg8ilao/tmpzc51ynkp.py", line 1 (a, b, c) = [int(i) for i in input().split ^ SyntaxError: '[' was never closed
s771074835
p02398
u605525736
1439526824
Python
Python3
py
Runtime Error
0
0
42
(a, b, c) = [int(i) for i in input().split
File "/tmp/tmpbooxttdh/tmpt5cbbhot.py", line 1 (a, b, c) = [int(i) for i in input().split ^ SyntaxError: '[' was never closed
s838171078
p02398
u979909897
1444206297
Python
Python
py
Runtime Error
0
0
289
import sys count = 0 for line in sys.stdin: array = line.readLine().split(" ") a = array[0] b = array[1] c = array[3] if (a < 1 or a > 10000) or (b < 1 or b > 10000) or (c < 1 or c > 10000): sys.exit() for x in xrange(a,b): if c % x == 0: count = count + 1 print count
File "/tmp/tmpb8a9rg4x/tmpbo7gwi2a.py", line 19 print count ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s479874485
p02398
u663227983
1452518338
Python
Python
py
Runtime Error
0
0
113
m = map(int,raw_input().split()) i = m[0] count = 0 for i in xrange(m[1]): if m[2] % i == 0: count = count + 1
Traceback (most recent call last): File "/tmp/tmpr2aa89lz/tmpsi2miibg.py", line 1, in <module> m = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s650600008
p02398
u663227983
1452518344
Python
Python
py
Runtime Error
0
0
113
m = map(int,raw_input().split()) i = m[0] count = 0 for i in xrange(m[1]): if m[2] % i == 0: count = count + 1
Traceback (most recent call last): File "/tmp/tmp2a8gbq47/tmp4zbewm8r.py", line 1, in <module> m = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s434826394
p02398
u663227983
1452654256
Python
Python
py
Runtime Error
0
0
131
m = map(int, raw_input().split()) a = m[0] b = m[1] c = m[2] for i in xrange(a,b): if c % i == 0: count = count + 1 print count
File "/tmp/tmpsle6v3tl/tmp0cpb5__f.py", line 9 print count ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s085669754
p02398
u663227983
1453026175
Python
Python
py
Runtime Error
0
0
106
n = map(int,raw_input().split()) c = 0 for i in range(n[0],[1]): if i % n[2] == 0: c = c + 1 print c
File "/tmp/tmp636j0aps/tmpcmrjytqg.py", line 9 print c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s673374522
p02398
u663227983
1453026185
Python
Python
py
Runtime Error
0
0
106
n = map(int,raw_input().split()) c = 0 for i in range(n[0],[1]): if i % n[2] == 0: c = c + 1 print c
File "/tmp/tmpcen3d3vc/tmp9495xu_v.py", line 9 print c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s012073541
p02398
u038005340
1453256330
Python
Python
py
Runtime Error
0
0
114
a,b,c = map( int , raw_input().split() ) n = 0 for i in range( a , b+1 ): if c % i == 0 n = n + 1 print 'n'
File "/tmp/tmpvtzt97ws/tmpp_s5skde.py", line 5 if c % i == 0 ^ SyntaxError: expected ':'
s995841400
p02398
u038005340
1453256364
Python
Python
py
Runtime Error
0
0
112
a,b,c = map( int , raw_input().split() ) n = 0 for i in range( a , b+1 ): if c % i == 0 n = n + 1 print n
File "/tmp/tmp17itvc5p/tmpz8uj9xx_.py", line 5 if c % i == 0 ^ SyntaxError: expected ':'
s033900536
p02398
u663227983
1453256894
Python
Python
py
Runtime Error
0
0
105
m = map(int, raw_input().split()) c = 0 for i in range(m[0],[1]): if i % m[2] == 0 : c = c + 1 print c
File "/tmp/tmp01j2gvk_/tmpkphno3c2.py", line 6 print c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s738010597
p02398
u663227983
1453257721
Python
Python
py
Runtime Error
0
0
114
m = map(int, raw_input().split()) c = 0 for i in xrange(m[0],m[1]+1): if m[2] % i == 0: c = c + 1 print c
File "/tmp/tmphps6psmh/tmpclzeb3_0.py", line 5 for i in xrange(m[0],m[1]+1): IndentationError: unexpected indent
s989657012
p02398
u393769849
1453258695
Python
Python
py
Runtime Error
0
0
121
a, b, c = map(int, raw_input().split()) i = a j = 0 for i in range(b) if c % i == 0 j += 1 print "j"
File "/tmp/tmpjtfmzucs/tmpgi374s27.py", line 1 a, b, c = map(int, raw_input().split()) IndentationError: unexpected indent
s269448563
p02398
u393769849
1453258703
Python
Python
py
Runtime Error
0
0
122
a, b, c = map(int, raw_input().split()) i = a j = 0 for i in range(b): if c % i == 0 j += 1 print "j"
File "/tmp/tmpp_i8qlef/tmpqogsntkk.py", line 1 a, b, c = map(int, raw_input().split()) IndentationError: unexpected indent
s603654029
p02398
u393769849
1453258725
Python
Python
py
Runtime Error
0
0
123
a, b, c = map(int, raw_input().split()) i = a j = 0 for i in range(b): if c % i == 0: j += 1 print "j"
File "/tmp/tmp6isag5wm/tmp690_7mba.py", line 1 a, b, c = map(int, raw_input().split()) IndentationError: unexpected indent
s716605090
p02398
u613805578
1453294929
Python
Python
py
Runtime Error
0
0
141
a, b, c = map(int, raw_input().split()) sum = 0 for i in range(a, b): if c % i == 0: sum = sum + 1 else sum = sum print sum
File "/tmp/tmpcgera2yx/tmp61u6vfol.py", line 6 else ^ SyntaxError: expected ':'
s088284059
p02398
u724923896
1453304198
Python
Python
py
Runtime Error
0
0
163
a, b, c = map(int, raw_input().split()) k = 0 for i in range(a, b): if c % i == 0 and != b: k += 1 elif a == b and b == c: k = 1 print k
File "/tmp/tmp1qtr_8_t/tmpw0g34wtg.py", line 5 if c % i == 0 and != b: ^^ SyntaxError: invalid syntax
s186339561
p02398
u834416077
1453347016
Python
Python
py
Runtime Error
0
0
117
a, b, c = map(int,raw_input().split()) i = a j = 0 for i in range(b-a+1): if c % i == 0: j = j + 1 print j
File "/tmp/tmpp7gjbrsg/tmpx6mc3kum.py", line 7 print j ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s325803738
p02398
u834416077
1453347109
Python
Python
py
Runtime Error
0
0
126
a, b, c = map(int,raw_input().split()) i = a j = 0 for i in range(b-a+1): if c % i == 0: j = j + 1 print "%d" % (j)
File "/tmp/tmpx0zc55w3/tmp4u8evkk8.py", line 7 print "%d" % (j) ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s065053419
p02398
u828153094
1453394821
Python
Python
py
Runtime Error
0
0
130
count = 0 a, b, c = map(int, raw_input().split()) while 1: if c%a == 0: count += 1 if a == b: break a += 1
File "/tmp/tmpriqjd335/tmpw9pz6wjr.py", line 5 count += 1 ^ IndentationError: expected an indented block after 'if' statement on line 4
s173521226
p02398
u828153094
1453395019
Python
Python
py
Runtime Error
0
0
142
count = 0 a, b, c = map(int, raw_input().split()) while 1: if c%a == 0: count += 1 if a == b: break a += 1 print count
File "/tmp/tmp7p1s7srv/tmpgm_us4v4.py", line 5 count += 1 ^ IndentationError: expected an indented block after 'if' statement on line 4
s952429316
p02398
u828153094
1453395095
Python
Python
py
Runtime Error
0
0
144
count = 0 a, b, c = map(int, raw_input().split()) while 1: if c%a == 0: count += 1 elif a == b: break a += 1 print count
File "/tmp/tmpthw_nn1f/tmpb_uoeikx.py", line 5 count += 1 ^ IndentationError: expected an indented block after 'if' statement on line 4
s039282960
p02398
u456885296
1453782527
Python
Python
py
Runtime Error
0
0
107
a,b,c=map(int,raw_input().split()) sum=0 for i in len(a,b): if c % a ==0: sum=sum+1 print 'sum'
File "/tmp/tmpnn0z14eu/tmpq1e4w6nx.py", line 8 print 'sum' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s435711393
p02398
u177295149
1453789817
Python
Python
py
Runtime Error
0
0
143
a, b, c = map(int, input_raw().split()) sum = 0 for i in range(a,b) if c%i == 0: sum = sum + 1 else: sum = sum print"%s" % (sum)
File "/tmp/tmpp118656x/tmp3n4btqwr.py", line 3 for i in range(a,b) ^ SyntaxError: expected ':'
s269525395
p02398
u177295149
1453789883
Python
Python
py
Runtime Error
0
0
145
a, b, c = map(int, input_raw().split()) sum = 0 for i in range(a,b): if c%i == 0: sum = sum + 1 else: sum = sum print"%s" % (sum)
File "/tmp/tmpgxdmxe6a/tmp2zun6x1f.py", line 10 print"%s" % (sum) ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s435199203
p02398
u177295149
1453789895
Python
Python
py
Runtime Error
0
0
145
a, b, c = map(int, input_raw().split()) sum = 0 for i in range(a,b): if c%i == 0: sum = sum + 1 else: sum = sum print'%s' % (sum)
File "/tmp/tmptu6p8pcc/tmp0wsifi6e.py", line 10 print'%s' % (sum) ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s474554628
p02398
u177295149
1453790231
Python
Python
py
Runtime Error
0
0
116
a, b, c = map(int, input_raw().split()) sum = 0 for i in range(a,b+1): if c%i == 0: sum = sum + 1 print sum
File "/tmp/tmpwh_g7imu/tmppyj6j4p_.py", line 8 print sum ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s269341957
p02398
u436807165
1455148357
Python
Python
py
Runtime Error
0
0
110
a,b,c = map(int,raw_input().split()) ans = [] for i in range(a,b+1): if c%i == 0: ans.append(i) return ans
File "/tmp/tmprq9vwyxs/tmp8v6025ws.py", line 6 return ans ^^^^^^^^^^ SyntaxError: 'return' outside function
s380311924
p02398
u436807165
1455148400
Python
Python
py
Runtime Error
0
0
110
a,b,c = map(int,raw_input().split()) ans = [] for i in range(a,b+1): if c%i == 0: ans.append(i) reuturn ans
File "/tmp/tmpuxzjlq3f/tmpudmxfi61.py", line 6 reuturn ans ^^^ SyntaxError: invalid syntax
s725880094
p02398
u436807165
1455148406
Python
Python
py
Runtime Error
0
0
109
a,b,c = map(int,raw_input().split()) ans = [] for i in range(a,b+1): if c%i == 0: ans.append(i) return ans
File "/tmp/tmp6o1im3w0/tmpux0h5h_q.py", line 6 return ans ^^^^^^^^^^ SyntaxError: 'return' outside function
s001805413
p02398
u436807165
1455149265
Python
Python
py
Runtime Error
0
0
114
a,b,c = map(int,raw_input().split()) lst = [] for i in range(a,b+1): if c%i == 0: lst.append(i) return len(lst)
File "/tmp/tmp_equ42gc/tmp868_uu7s.py", line 6 return len(lst) ^^^^^^^^^^^^^^^ SyntaxError: 'return' outside function
s704999866
p02398
u279955105
1457492708
Python
Python3
py
Runtime Error
0
0
148
i = 0 while True: a,b,c = list(map(int,input().split())) for d in range(a, b+1): if (c % d ==0): i +=1 print(str(i))
Traceback (most recent call last): File "/tmp/tmp215cjfbv/tmp2ageivox.py", line 3, in <module> a,b,c = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s256498421
p02398
u994049982
1458663508
Python
Python
py
Runtime Error
0
0
85
a,b,c=map(int,input().split()) d=0 for i in range(a,b+1): if c%i==0: d+=1
Traceback (most recent call last): File "/tmp/tmpy48jyiiu/tmpz54qxlxw.py", line 1, in <module> a,b,c=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line