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
s003658276
p02398
u544943822
1503644075
Python
Python
py
Runtime Error
0
0
133
a,b,c = map(int, raw_input().split) count=0 for x in range(a,b+1): if c%x == 0: count += 1 print ('count')
Traceback (most recent call last): File "/tmp/tmpczkwvdwy/tmpe3zh9rl_.py", line 1, in <module> a,b,c = map(int, raw_input().split) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s549360780
p02398
u544943822
1503644131
Python
Python
py
Runtime Error
0
0
129
a,b,c = map(int, raw_input().split) count=0 for x in range(a,b+1): if c%x == 0: count += 1 print('count')
Traceback (most recent call last): File "/tmp/tmppe59si0p/tmpqeotlndd.py", line 1, in <module> a,b,c = map(int, raw_input().split) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s449927687
p02398
u544943822
1503644181
Python
Python
py
Runtime Error
0
0
129
a,b,c = map(int, raw_input().split) count=0 for x in range(a,b+1): if c%x == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmpkz1fi_ap/tmp0xr3ll8t.py", line 1, in <module> a,b,c = map(int, raw_input().split) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s446907685
p02398
u544943822
1503644260
Python
Python
py
Runtime Error
0
0
137
a,b,c = map(int, raw_input().split) count=0 for x in range(a,b+1): if c%x == 0: count += 1 print(str(count))
Traceback (most recent call last): File "/tmp/tmpn8njxe9u/tmpzsp7ltir.py", line 1, in <module> a,b,c = map(int, raw_input().split) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s991816062
p02398
u544943822
1503644371
Python
Python
py
Runtime Error
0
0
129
a,b,c = map(int, raw_input().split) count=0 for x in range(a,b+1): if c%x == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmp95684go5/tmp0cb4b1u8.py", line 1, in <module> a,b,c = map(int, raw_input().split) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s573006141
p02398
u933096856
1504906707
Python
Python3
py
Runtime Error
0
0
70
a,b=map(int, input().split()) print(a//b, a%b, "{0:.20f}".format(a/b))
Traceback (most recent call last): File "/tmp/tmp7isnapo8/tmpiakgml9m.py", line 1, in <module> a,b=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s671690367
p02398
u933096856
1504906729
Python
Python3
py
Runtime Error
0
0
69
a,b=map(int, input().split()) print(a//b, a%b, "{0:.8f}".format(a/b))
Traceback (most recent call last): File "/tmp/tmp2k76jar1/tmp5t0bqnu2.py", line 1, in <module> a,b=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s263311200
p02398
u362494298
1505183322
Python
Python3
py
Runtime Error
0
0
82
a,b,c = map(input().split()) y=0 if c%x==0 for x in(a,b+1) : y+=1 print(y)
File "/tmp/tmp8ijvr__7/tmp0bgzeqsq.py", line 3 if c%x==0 for x in(a,b+1) : ^^^ SyntaxError: invalid syntax
s871897539
p02398
u362494298
1505183468
Python
Python3
py
Runtime Error
0
0
86
a,b,c = map(input().split()) y=0 for x in(a,b+1): if c%x==0: y+=1 print(y)
File "/tmp/tmph76w1npu/tmp8rut69eq.py", line 5 y+=1 ^ IndentationError: expected an indented block after 'if' statement on line 4
s381628891
p02398
u362494298
1505183582
Python
Python3
py
Runtime Error
0
0
64
a,b,c = map(input().split()) print(sum([c%x==0 for x in(a,b+1)])
File "/tmp/tmp9ffe25f9/tmp651k_dkz.py", line 2 print(sum([c%x==0 for x in(a,b+1)]) ^ SyntaxError: '(' was never closed
s661654659
p02398
u362494298
1505183888
Python
Python3
py
Runtime Error
0
0
83
a,b,c = map(input().split()) d=0 for x in range(a,b+1): if c%x==0:d+=1 print(d)
Traceback (most recent call last): File "/tmp/tmp9qawtzv6/tmpjwdmkin6.py", line 1, in <module> a,b,c = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s311265436
p02398
u362494298
1505184050
Python
Python3
py
Runtime Error
0
0
87
a,b,c = map(input().split()) d=0 x=0 for x in range(a,b+1): if c%x==0:d+=1 print(d)
Traceback (most recent call last): File "/tmp/tmpqgso2tge/tmpsuhwizz7.py", line 1, in <module> a,b,c = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s525453894
p02398
u186282999
1505956703
Python
Python3
py
Runtime Error
0
0
202
my_value = input() my_value_list = ([int(x) for x in my_value.split()]) count = 0 for i in range(my_value_list[0], my_value_list[1]+1): if my_value_list[] % i == 0: count += 1 print(count)
File "/tmp/tmpgud_wq0w/tmp837pjzo6.py", line 6 if my_value_list[] % i == 0: ^ SyntaxError: invalid syntax
s262745216
p02398
u664228906
1506326697
Python
Python3
py
Runtime Error
0
0
108
a,b,c = map(int, input().split()) cnt = 0 for i in range(a,b) if c%i != 0 : else : cnt += 1 print(cnt)
File "/tmp/tmpjn8zzcor/tmpgbn6h80w.py", line 3 for i in range(a,b) ^ SyntaxError: expected ':'
s143368284
p02398
u664228906
1506326728
Python
Python3
py
Runtime Error
0
0
100
a,b,c = map(int, input().split()) cnt = 0 for i in range(a,b) if c%i == 0 : cnt += 1 print(cnt)
File "/tmp/tmplt5x61sv/tmp2_wincds.py", line 3 for i in range(a,b) ^ SyntaxError: expected ':'
s631959964
p02398
u664228906
1506326771
Python
Python3
py
Runtime Error
0
0
102
a,b,c = map(int, input().split()) cnt = 0 for i in range(a,b+1) if c%i == 0 : cnt += 1 print(cnt)
File "/tmp/tmpb2kk5x1w/tmp9qrxe3t1.py", line 3 for i in range(a,b+1) ^ SyntaxError: expected ':'
s252801043
p02398
u664228906
1506326883
Python
Python3
py
Runtime Error
0
0
101
a,b,c = map(int, input().split()) cnt = 0 for i in range(a,b+1) if c%i == 0 : cnt += 1 print(cnt)
File "/tmp/tmpv1lklez2/tmp6xxcb1eu.py", line 3 for i in range(a,b+1) ^ SyntaxError: expected ':'
s825360354
p02398
u664228906
1506326899
Python
Python3
py
Runtime Error
0
0
104
a,b,c = map(int, input().split(" ")) cnt = 0 for i in range(a,b+1) if c%i == 0 : cnt += 1 print(cnt)
File "/tmp/tmpbbk49ban/tmpjry0kpe2.py", line 3 for i in range(a,b+1) ^ SyntaxError: expected ':'
s471900863
p02398
u197670577
1508060772
Python
Python
py
Runtime Error
0
0
117
a, b, c = [int(i) for i in raw_input()] num = 0 for i in range(a,b+1): if c % i == 0: num += 1 print num
File "/tmp/tmprfni1rft/tmpwjxqsvga.py", line 7 print num ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s713598990
p02398
u102664642
1509809947
Python
Python3
py
Runtime Error
0
0
134
n = 0 a,b,c = list(map(int,input().split())) for i in range(a,b): if true: continue x = c % i if x == 0: n += 1 print(n)
Traceback (most recent call last): File "/tmp/tmp90o3mvww/tmp6uhux3u_.py", line 2, in <module> a,b,c = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s426258959
p02398
u706217959
1512881294
Python
Python3
py
Runtime Error
0
0
328
def main(): data = [] while 1: n = input().split() a = int(n[0]) b = int(n[1]) c = int(n[2]) div = 0 for i in range(a,b): if c % i == 0: div += 1 else: pass print(div) if __name__ == '__main__': ...
Traceback (most recent call last): File "/tmp/tmpx_t05xw9/tmpzl4431mq.py", line 19, in <module> main() File "/tmp/tmpx_t05xw9/tmpzl4431mq.py", line 4, in main n = input().split() ^^^^^^^ EOFError: EOF when reading a line
s544895227
p02398
u706217959
1512881312
Python
Python3
py
Runtime Error
0
0
328
def main(): data = [] while 1: n = input().split() a = int(n[0]) b = int(n[1]) c = int(n[2]) div = 0 for i in range(a,b): if c % i == 0: div += 1 else: pass print(div) if __name__ == '__main__': ...
Traceback (most recent call last): File "/tmp/tmpogezk76q/tmphdi_bn0i.py", line 19, in <module> main() File "/tmp/tmpogezk76q/tmphdi_bn0i.py", line 4, in main n = input().split() ^^^^^^^ EOFError: EOF when reading a line
s875775210
p02398
u706217959
1512881342
Python
Python3
py
Runtime Error
0
0
289
def main(): data = [] while 1: n = input().split() a = int(n[0]) b = int(n[1]) c = int(n[2]) div = 0 for i in range(a,b): if c % i == 0: div += 1 print(div) if __name__ == '__main__': main()
Traceback (most recent call last): File "/tmp/tmpdxb88lug/tmpno2mvo8e.py", line 17, in <module> main() File "/tmp/tmpdxb88lug/tmpno2mvo8e.py", line 4, in main n = input().split() ^^^^^^^ EOFError: EOF when reading a line
s746535008
p02398
u150984829
1513064675
Python
Python3
py
Runtime Error
0
0
80
a,b,c=map(int,input().split()) n=0 for i in range(a,b+1):if c%i==0:n+=1 print(n)
File "/tmp/tmpfia5200p/tmpeg3n_67i.py", line 3 for i in range(a,b+1):if c%i==0:n+=1 ^^ SyntaxError: invalid syntax
s479266397
p02398
u150984829
1513064916
Python
Python3
py
Runtime Error
0
0
80
a,b,c=map(int,input().split()) n=0 for i in range(a,b+1):if c%i==0:n+=1 print(n)
File "/tmp/tmp3egcr7z7/tmpl5km857o.py", line 3 for i in range(a,b+1):if c%i==0:n+=1 ^^ SyntaxError: invalid syntax
s979970290
p02398
u987701388
1515488829
Python
Python3
py
Runtime Error
0
0
111
a,b,c=[int(x) for x in input().split()] count=0 for d in xrange(a,b+1): if c%d==0: count+=1 print(count)
Traceback (most recent call last): File "/tmp/tmpq7nm6t_1/tmp70y_lcco.py", line 1, in <module> a,b,c=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s958365944
p02398
u987701388
1515488907
Python
Python3
py
Runtime Error
0
0
111
a,b,c=[int(x) for x in input().split()] count=0 for d in xrange(a,b+1): if c%d==0: count+=1 print(count)
Traceback (most recent call last): File "/tmp/tmp0n7yrjs6/tmplo1tgcm7.py", line 1, in <module> a,b,c=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s941136049
p02398
u987701388
1515489164
Python
Python3
py
Runtime Error
0
0
111
a,b,c=[int(x) for x in input().split()] count=0 for d in xrange(a,b+1): if c%d==0: count+=1 print(count)
Traceback (most recent call last): File "/tmp/tmpx5ytt1e2/tmp2xknbykk.py", line 1, in <module> a,b,c=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s776334547
p02398
u179070318
1515991487
Python
Python
py
Runtime Error
0
0
261
a,b,c = [int(x) for x in input().split( )] div = [] for x in range(1,c+1): if c % x == 0: div.append(x) r = [] for x in range(a,b+1): r.append(x) answer = 0 for x in div: for y in r: if x == y: answer += 1 print(answer)
Traceback (most recent call last): File "/tmp/tmpu77yutlw/tmplkdqqu74.py", line 1, in <module> a,b,c = [int(x) for x in input().split( )] ^^^^^^^ EOFError: EOF when reading a line
s305753113
p02398
u299257375
1516080302
Python
Python3
py
Runtime Error
0
0
112
a, b, c = map(int, input().split()) for i in range(a, b+1): if c % i == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmp8p8nmsr_/tmphssvqt_7.py", line 1, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s341256660
p02398
u299257375
1516080346
Python
Python3
py
Runtime Error
0
0
103
a, b, c = map(int, input().split()) for i in range(a, b+1): if c % i == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmplfwvr5tx/tmpmq1i1rqm.py", line 1, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s748051364
p02398
u299257375
1516080592
Python
Python3
py
Runtime Error
0
0
114
a, b, c = map(int, input().split()) while a != b+1: if c % i == 0: count += 1 a += 1 print(count)
Traceback (most recent call last): File "/tmp/tmpxitthzcn/tmpy8d8v8o7.py", line 1, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s756346345
p02398
u780025254
1517809264
Python
Python3
py
Runtime Error
0
0
256
import sympy as sym a, b, c = map(int, input().split()) c_divisors_list = sym.divisors(c) result = [] for c_divisor in c_divisors_list: if c_divisor < a or c_divisor > b: pass else: result.append(c_divisor) print(len(result))
Traceback (most recent call last): File "/tmp/tmp51q0qt4h/tmpbn8ckltp.py", line 3, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s451194589
p02398
u796301295
1517967037
Python
Python3
py
Runtime Error
0
0
114
a, b, c = map(int, input().split()) j = 0 while i in range(a, b + 1) if c % i == 0: j += 1 print (j)
File "/tmp/tmp8enrnzre/tmptdown9jp.py", line 3 while i in range(a, b + 1) ^ SyntaxError: expected ':'
s530210614
p02398
u613534067
1520156221
Python
Python3
py
Runtime Error
0
0
114
a, b, c = map(int, input().split()) cnt = 0 for i in range(a, b+1): if(!(c % i)): cnt += 1 print(cnt)
File "/tmp/tmpktifv6rz/tmpeea1tmv3.py", line 4 if(!(c % i)): ^ SyntaxError: invalid syntax
s820924857
p02398
u621084859
1522394287
Python
Python3
py
Runtime Error
0
0
123
n=input().split() a=int(n[0]) b=int(n[1]) c=int(n[2]) count=0 while i <=a+b: if c/i==0: count=i+1 print(count)
Traceback (most recent call last): File "/tmp/tmp16ox5lms/tmp8a2irj3h.py", line 1, in <module> n=input().split() ^^^^^^^ EOFError: EOF when reading a line
s085300582
p02398
u621084859
1522394311
Python
Python3
py
Runtime Error
0
0
126
n=input().split(" ") a=int(n[0]) b=int(n[1]) c=int(n[2]) count=0 while i <=a+b: if c/i==0: count=i+1 print(count)
Traceback (most recent call last): File "/tmp/tmp7hbzp8a_/tmpojfqd2oh.py", line 1, in <module> n=input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s634201447
p02398
u621084859
1522394427
Python
Python3
py
Runtime Error
0
0
134
n=input().split(" ") a=int(n[0]) b=int(n[1]) c=int(n[2]) count=0 for i in range(a+b+1): if c/i==0: count=i+1 print(count)
Traceback (most recent call last): File "/tmp/tmpjrs3ohlw/tmp1g_w_sbo.py", line 1, in <module> n=input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s637011318
p02398
u621084859
1522394497
Python
Python3
py
Runtime Error
0
0
134
n=input().split(" ") a=int(n[0]) b=int(n[1]) c=int(n[2]) count=0 for i in range(a+b+1): if c%i==0: count=i+1 print(count)
Traceback (most recent call last): File "/tmp/tmpcbmoowv3/tmp1cb23iv6.py", line 1, in <module> n=input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s879077575
p02398
u621084859
1522394776
Python
Python3
py
Runtime Error
0
0
134
n=input().split(" ") a=int(n[0]) b=int(n[1]) c=int(n[2]) count=0 for i in range(a+b+1): if c%i==0: count=i+1 print(count)
Traceback (most recent call last): File "/tmp/tmp3wda14zq/tmpv8e1cgtt.py", line 1, in <module> n=input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s962912389
p02398
u621084859
1522394888
Python
Python3
py
Runtime Error
0
0
113
n=input().split(" ") a=int(n[0]) b=int(n[1]) c=int(n[2]) count=0 for i in range(n+1): count=i+1 print(count)
Traceback (most recent call last): File "/tmp/tmpjaklsag8/tmpa8_xmxp6.py", line 1, in <module> n=input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s576655111
p02398
u621084859
1522401466
Python
Python3
py
Runtime Error
0
0
149
x = input().split(" ") a = int(x[0]) b = int(x[1]) c = int(x[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/tmp45hgdjp_/tmpec30bp38.py", line 1, in <module> x = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s868338406
p02398
u405987720
1522856097
Python
Python
py
Runtime Error
0
0
172
temp = raw_input() temp_list = temp.split() a = temp_list[0] b = temp_list[1] c = temp_list[2] count = 0 for i in range(a,b): if c//i == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmp21um9am4/tmptj8kvacd.py", line 1, in <module> temp = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s316063712
p02398
u405987720
1522856126
Python
Python
py
Runtime Error
0
0
171
temp = raw_input() temp_list = temp.split() a = temp_list[0] b = temp_list[1] c = temp_list[2] count = 0 for i in range(a,b): if c/i == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmp_j77atja/tmpom91kvqp.py", line 1, in <module> temp = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s410736029
p02398
u405987720
1522856204
Python
Python
py
Runtime Error
0
0
171
temp = raw_input() temp_list = temp.split() a = temp_list[0] b = temp_list[1] c = temp_list[2] count = 0 for i in range(a,b): if c/i == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmp5wkszbv_/tmppyv5kt_r.py", line 1, in <module> temp = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s577192220
p02398
u405987720
1522856430
Python
Python
py
Runtime Error
0
0
173
temp = raw_input() temp_list = temp.split() a = temp_list[0] b = temp_list[1] c = temp_list[2] count = 0 for i in range(a,b): if c/i == 0: count += 1 print(count)
Traceback (most recent call last): File "/tmp/tmpf85krkqb/tmp0v41ll8h.py", line 1, in <module> temp = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s888730709
p02398
u405987720
1522856565
Python
Python
py
Runtime Error
0
0
175
temp = raw_input() temp_list = temp.split() a = temp_list[0] b = temp_list[1] c = temp_list[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/tmp0mbuhueg/tmpvp6_b_hw.py", line 1, in <module> temp = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s327569130
p02398
u244493040
1523635347
Python
Python3
py
Runtime Error
0
0
90
i,a,b,c = 0,map(int,input().split()) for x in range(a+1,b) if c % x == 0: i+=1 print(i)
File "/tmp/tmp6k9e7cpu/tmp025mx_rw.py", line 2 for x in range(a+1,b) ^ SyntaxError: expected ':'
s516604389
p02398
u244493040
1523635370
Python
Python3
py
Runtime Error
0
0
90
i=0 a,b,c = map(int,input().split()) for x in range(a+1,b) if c % x == 0: i+=1 print(i)
File "/tmp/tmp31ly5ymi/tmphoubim38.py", line 3 for x in range(a+1,b) ^ SyntaxError: expected ':'
s401452264
p02398
u074747865
1524126501
Python
Python3
py
Runtime Error
0
0
99
a,b,c=map(int,input().split()) n=0 for i in range(a:b+1) if c%i==0: n +=1 else: n=n print(n)
File "/tmp/tmppdj61gzm/tmpkdf02neh.py", line 3 for i in range(a:b+1) ^ SyntaxError: invalid syntax
s755341414
p02398
u074747865
1524126591
Python
Python3
py
Runtime Error
0
0
99
a,b,c=map(int,input().split()) n=0 for i in range(a,b+1) if c%i==0: n +=1 else: n=n print(n)
File "/tmp/tmp5ad26dg2/tmpkndyg6o9.py", line 3 for i in range(a,b+1) ^ SyntaxError: expected ':'
s002707791
p02398
u589139267
1524182821
Python
Python3
py
Runtime Error
0
0
156
a = int(input()) b = int(input()) c = int(input()) count = 0 n = 0 while b-a==0: if c%(b-(a+n)==0 count += 1 n += 1 else: n += 1
File "/tmp/tmpmqbf5g59/tmpe657ep3d.py", line 9 if c%(b-(a+n)==0 ^ SyntaxError: '(' was never closed
s204209085
p02398
u328199937
1524193419
Python
Python3
py
Runtime Error
0
0
8
5 14 80
File "/tmp/tmpbpvzttj8/tmpeatbb3an.py", line 1 5 14 80 ^^ SyntaxError: invalid syntax
s603119703
p02398
u485986915
1524459276
Python
Python3
py
Runtime Error
0
0
83
a,b,c = input() n = 0 for a in range(b): if c%a == 0 : n=n+1 print(n)
Traceback (most recent call last): File "/tmp/tmplw2b1f2q/tmpqentii4b.py", line 1, in <module> a,b,c = input() ^^^^^^^ EOFError: EOF when reading a line
s601597641
p02398
u485986915
1524459442
Python
Python3
py
Runtime Error
0
0
85
a,b,c = input() n = 0 for i in range(a,b+1): if c%i == 0 : n = n+1 print(n)
Traceback (most recent call last): File "/tmp/tmpjya1htze/tmpzjk88ue1.py", line 1, in <module> a,b,c = input() ^^^^^^^ EOFError: EOF when reading a line
s149513113
p02398
u589139267
1524477331
Python
Python3
py
Runtime Error
0
0
118
a, b, c = map(int, input().split()) count = 1 for i in range(a, b+1): if c%i = 0: count += 1 print(count)
File "/tmp/tmp90lddtvr/tmp87nu27gn.py", line 6 if c%i = 0: ^^^ SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?
s225836910
p02398
u729486845
1524664037
Python
Python3
py
Runtime Error
0
0
191
a,b,c = map(int, input().split()) cnt = 0 i = 0 while i < b : if a > i : else if (c%i) == 0 : cnt += 1 i += 1 print(cnt)
File "/tmp/tmp5jd4wdrt/tmpttr63_2y.py", line 9 else ^ IndentationError: expected an indented block after 'if' statement on line 7
s367625116
p02398
u781194524
1524815439
Python
Python3
py
Runtime Error
0
0
127
a,b,c=[int(x) for x in input().split()] x = b count = 0 while True: if x == a: break elif x%c == 0 : count += b -=
File "/tmp/tmpehsk2gz7/tmpn0hg5sxk.py", line 6 elif x%c == 0 : count += ^ SyntaxError: invalid syntax
s027924364
p02398
u781194524
1524815526
Python
Python3
py
Runtime Error
0
0
136
a,b,c=[int(x) for x in input().split()] x = b count = 0 while True: if x == a: break elif x%c == 0 : count += x -= print(x)
File "/tmp/tmpeocm2m9e/tmphpo0zhuy.py", line 6 elif x%c == 0 : count += ^ SyntaxError: invalid syntax
s778712806
p02398
u781194524
1524815598
Python
Python3
py
Runtime Error
0
0
136
a,b,c=[int(x) for x in input().split()] x = b count = 0 while True: if x == a: break elif x%c == 0 : count +=,x -= print(count)
File "/tmp/tmp3c248oru/tmp3i8qssm6.py", line 6 elif x%c == 0 : count +=,x -= ^ SyntaxError: invalid syntax
s479627923
p02398
u781194524
1524815683
Python
Python3
py
Runtime Error
0
0
120
a,b,c=[int(x) for x in input().split()] x = b count = 0 for d in range(a,b+1) elif x%c == 0 : count += print(count)
File "/tmp/tmpa_p9db39/tmp1h7n_rnu.py", line 4 for d in range(a,b+1) ^ SyntaxError: expected ':'
s863369042
p02398
u781194524
1524815722
Python
Python3
py
Runtime Error
0
0
120
a,b,c=[int(x) for x in input().split()] x = b count = 0 for d in range(a,b+1) elif c%d == 0 : count += print(count)
File "/tmp/tmpi84g2ehi/tmpnjr627xh.py", line 4 for d in range(a,b+1) ^ SyntaxError: expected ':'
s010264265
p02398
u781194524
1524815744
Python
Python3
py
Runtime Error
0
0
114
a,b,c=[int(x) for x in input().split()] count = 0 for d in range(a,b+1) elif c%d == 0 : count += print(count)
File "/tmp/tmp2u1nhz5u/tmpszx3a7dz.py", line 3 for d in range(a,b+1) ^ SyntaxError: expected ':'
s695502922
p02398
u781194524
1524815761
Python
Python3
py
Runtime Error
0
0
116
a,b,c=[int(x) for x in input().split()] count = 0 for d in range(a,b+1) elif c%d == 0 : count += 1 print(count)
File "/tmp/tmpghaynm34/tmppz14vds3.py", line 3 for d in range(a,b+1) ^ SyntaxError: expected ':'
s376377769
p02398
u781194524
1524815772
Python
Python3
py
Runtime Error
0
0
114
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/tmpl5cu4a54/tmp1w2ugrno.py", line 3 for d in range(a,b+1) ^ SyntaxError: expected ':'
s950518713
p02398
u781194524
1525146006
Python
Python
py
Runtime Error
0
0
110
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)
Traceback (most recent call last): File "/tmp/tmpi_nm3m7v/tmpte4nrzu9.py", line 1, in <module> a,b,c=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s227419479
p02398
u592529978
1525315109
Python
Python
py
Runtime Error
0
0
87
a,b,c = map(int, raw(input().split) print len[x for x in range(a,b+1) if c % x == 0])
File "/tmp/tmpzi2e0q9u/tmp00ec6qse.py", line 1 a,b,c = map(int, raw(input().split) ^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s559820552
p02398
u592529978
1525315142
Python
Python
py
Runtime Error
0
0
85
a,b,c = map(int, raw(input().split) print len[x for x in range(a,b+1) if c % x == 0]
File "/tmp/tmp1dhf6no2/tmp86q7zsam.py", line 1 a,b,c = map(int, raw(input().split) ^ SyntaxError: '(' was never closed
s440787170
p02398
u592529978
1525315191
Python
Python
py
Runtime Error
0
0
87
(a,b,c) = map(int, raw(input().split) print len[x for x in range(a,b+1) if c % x == 0]
File "/tmp/tmprh6gq6ws/tmpcgo60ua_.py", line 1 (a,b,c) = map(int, raw(input().split) ^ SyntaxError: '(' was never closed
s469616902
p02398
u592529978
1525315808
Python
Python
py
Runtime Error
0
0
87
a,b,c = map(int, raw(input().split) print len([x for x in range(a,b+1) if c % x == 0])
File "/tmp/tmpn3ypn0s8/tmpwjr77bn9.py", line 1 a,b,c = map(int, raw(input().split) ^ SyntaxError: '(' was never closed
s576723150
p02398
u226008611
1525792148
Python
Python3
py
Runtime Error
0
0
722
use std::io; use std::str::FromStr; fn read_line() -> String { let mut s = String::new(); io::stdin().read_line(&mut s).unwrap(); s } macro_rules! from_line { ($($a:ident : $t:ty),+) => { $(let $a: $t;)+ { let _line = read_line(); let mut _it = _line.trim().spli...
File "/tmp/tmphjo7uhtr/tmptx2130t2.py", line 1 use std::io; ^^^ SyntaxError: invalid syntax
s924192415
p02398
u500257793
1527583557
Python
Python3
py
Runtime Error
0
0
93
a,b,c=map(int,input().split()) g=0 while a<=b: if c%i==0 g=g+1 a=a+1 print(g)
File "/tmp/tmp0m9bq93l/tmper9zi68r.py", line 4 if c%i==0 ^ SyntaxError: expected ':'
s624195569
p02398
u500257793
1527583585
Python
Python3
py
Runtime Error
0
0
94
a,b,c=map(int,input().split()) g=0 while a<=b: if c%i==0: g=g+1 a=a+1 print(g)
Traceback (most recent call last): File "/tmp/tmpbd1onbuw/tmp886txif5.py", line 1, in <module> a,b,c=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s597434480
p02398
u990900604
1527779901
Python
Python
py
Runtime Error
0
0
126
import sys if __name__ == '__main__': a,b,c=map(int,sys.stdin.read().split()) print len(i for i in range(a,b+1) if c%i==0)
File "/tmp/tmpz_wmf2wj/tmpdctc9t7m.py", line 5 print len(i for i in range(a,b+1) if c%i==0) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s414257633
p02398
u987236471
1530541461
Python
Python3
py
Runtime Error
0
0
102
a,b,c = map(int, input().split()) x = 0 for i in range(a,b+1) if 80 %% i == 0: x += x+1 print(x)
File "/tmp/tmp3vn3vkee/tmpxlbqc8p7.py", line 3 for i in range(a,b+1) ^ SyntaxError: expected ':'
s732328924
p02398
u987236471
1530541474
Python
Python3
py
Runtime Error
0
0
101
a,b,c = map(int, input().split()) x = 0 for i in range(a,b+1) if c %% i == 0: x += x+1 print(x)
File "/tmp/tmpcm7cgxzo/tmp289d2wi2.py", line 3 for i in range(a,b+1) ^ SyntaxError: expected ':'
s586983026
p02398
u987236471
1530541508
Python
Python3
py
Runtime Error
0
0
102
a,b,c = map(int, input().split()) x = 0 for i in range(a,b+1): if c %% i == 0: x += x+1 print(x)
File "/tmp/tmpajo1bvwd/tmpacqvi1ep.py", line 4 if c %% i == 0: ^ SyntaxError: invalid syntax
s574179037
p02399
u580227385
1535599515
Python
Python3
py
Runtime Error
0
0
81
a, b = map(int, input().split()) print("{} {} {}".format(a // b, a % b, (a / b))
File "/tmp/tmp02k8amop/tmp3ke0m05u.py", line 2 print("{} {} {}".format(a // b, a % b, (a / b)) ^ SyntaxError: '(' was never closed
s896300555
p02399
u281808376
1540291839
Python
Python3
py
Runtime Error
0
0
80
s=input().split() a,b=int(s[0]),int(s[1]) print("{} {} {}".format(a//b,a%b,a/b)
File "/tmp/tmpkxzhup0j/tmpirurrbft.py", line 3 print("{} {} {}".format(a//b,a%b,a/b) ^ SyntaxError: '(' was never closed
s782622735
p02399
u803045841
1540901969
Python
Python3
py
Runtime Error
0
0
86
a,b = int(input().split(' ')) d = a // b r = a % b f = a / b print(d,r,f, sep='\n' )
Traceback (most recent call last): File "/tmp/tmpeh5iwdnh/tmpbg8gi4o9.py", line 1, in <module> a,b = int(input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s303610219
p02399
u803045841
1540902536
Python
Python3
py
Runtime Error
0
0
86
a,b = int(input().split(' ')) d = a // b r = a % b f = a / b print(d,r,f, sep='\n' )
Traceback (most recent call last): File "/tmp/tmp6ws1izlm/tmpbfv2s6b2.py", line 1, in <module> a,b = int(input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s508213445
p02399
u596993252
1541059747
Python
Python3
py
Runtime Error
0
0
80
a,b=map(int,input().split()) c=a//b; d=a%b e=(double)a/b print(f'{c} {d} {e}')
File "/tmp/tmpjrnxf7lm/tmpxhc0zxvt.py", line 4 e=(double)a/b ^ SyntaxError: invalid syntax
s783983955
p02399
u596993252
1541059881
Python
Python3
py
Runtime Error
0
0
81
a,b=map(int,input().split()) c=a//b; d=a%b e=(double)a/b print(f"{c} {d} {e}")
File "/tmp/tmpg6xmbi9q/tmpnrpmlcnx.py", line 4 e=(double)a/b ^ SyntaxError: invalid syntax
s242807047
p02399
u596993252
1541059896
Python
Python3
py
Runtime Error
0
0
80
a,b=map(int,input().split()) c=a//b d=a%b e=(double)a/b print(f"{c} {d} {e}")
File "/tmp/tmpuhul06tz/tmp9p52w0bu.py", line 4 e=(double)a/b ^ SyntaxError: invalid syntax
s496591685
p02399
u921810101
1541060127
Python
Python3
py
Runtime Error
0
0
61
a,b = map(input().split()) print(a//b) print(a%b) print(a/b)
Traceback (most recent call last): File "/tmp/tmpw6xkui4o/tmpaasa9pgp.py", line 1, in <module> a,b = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s895012309
p02399
u893058769
1541060289
Python
Python3
py
Runtime Error
0
0
73
x,y=map(int,input().split()) d=x//y r=x%y f=x/y print(f"{d} {r} {.5f}")
File "/tmp/tmplg_fzc80/tmpvibh1p16.py", line 5 (.5f) ^ SyntaxError: invalid decimal literal
s445164995
p02399
u861678859
1541060370
Python
Python3
py
Runtime Error
0
0
88
input = input() a,b=(int,input.split()) print(a // b) print(a % b) print(flort(a / b))
Traceback (most recent call last): File "/tmp/tmp2qov80o9/tmpca5zhv1v.py", line 1, in <module> input = input() ^^^^^^^ EOFError: EOF when reading a line
s937593980
p02399
u596993252
1541060498
Python
Python3
py
Runtime Error
0
0
77
a,b=map(int,input().split()) ptint("{0} {1} {2:.8f}",format,(a//b,a%b,a/b))
Traceback (most recent call last): File "/tmp/tmppir7plt9/tmp68nywtby.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s034020133
p02399
u596993252
1541060526
Python
Python3
py
Runtime Error
0
0
77
a,b=map(int,input().split()) ptint("{0} {1} {2:.8f}".format,(a//b,a%b,a/b))
Traceback (most recent call last): File "/tmp/tmpdvduka61/tmp4c16ustd.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s630492430
p02399
u861678859
1541060527
Python
Python3
py
Runtime Error
0
0
94
input = input() a,b=(int,input.split()) print("{0} {1} {2:.8}".format{a // b, a % b, a / b))
File "/tmp/tmpkwlt4v3z/tmp1ccz10ro.py", line 3 print("{0} {1} {2:.8}".format{a // b, a % b, a / b)) ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '{'
s637527851
p02399
u596993252
1541060539
Python
Python3
py
Runtime Error
0
0
76
a,b=map(int,input().split()) ptint("{0} {1} {2:.8f}".format(a//b,a%b,a/b))
Traceback (most recent call last): File "/tmp/tmpnlxnayel/tmpij594pwx.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s043722432
p02399
u861678859
1541060547
Python
Python3
py
Runtime Error
0
0
80
a,b=(int,input().split()) print("{0} {1} {2:.8}".format{a // b, a % b, a / b))
File "/tmp/tmpcfv5qp6w/tmpankiuc7o.py", line 2 print("{0} {1} {2:.8}".format{a // b, a % b, a / b)) ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '{'
s635688283
p02399
u861678859
1541060564
Python
Python3
py
Runtime Error
0
0
81
a,b=(int,input().split()) print("{0} {1} {2:.8f}".format{a // b, a % b, a / b))
File "/tmp/tmpsm66rw3z/tmp5n2vmtx2.py", line 2 print("{0} {1} {2:.8f}".format{a // b, a % b, a / b)) ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '{'
s034197400
p02399
u861678859
1541060581
Python
Python3
py
Runtime Error
0
0
81
a,b=(int,input().split()) print("{0} {1} {2:.8f}".format(a // b, a % b, a / b))
Traceback (most recent call last): File "/tmp/tmphf1970oc/tmph83an40g.py", line 1, in <module> a,b=(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s594118465
p02399
u962909487
1545837308
Python
Python3
py
Runtime Error
0
0
61
a,b = map(int,input().split()) print(a//b,a%b,"{:.5f}"(a/b))
/tmp/tmpovec2gva/tmpmamhhizm.py:2: SyntaxWarning: 'str' object is not callable; perhaps you missed a comma? print(a//b,a%b,"{:.5f}"(a/b)) Traceback (most recent call last): File "/tmp/tmpovec2gva/tmpmamhhizm.py", line 1, in <module> a,b = map(int,input().split()) ^^^^^^^ EOFError: EOF when rea...
s314953604
p02399
u643542669
1545872895
Python
Python3
py
Runtime Error
0
0
77
a, b = map(int, input().split()) print(a // b, a % b, {:.10f}.format(a / b))
File "/tmp/tmpckmtqo1e/tmp38x5_v_z.py", line 2 print(a // b, a % b, {:.10f}.format(a / b)) ^ SyntaxError: invalid decimal literal
s637123700
p02399
u316246166
1545906028
Python
Python3
py
Runtime Error
0
0
70
x, y = map(int, input().split()) print(int(x/y), x%y, double(x/y))
Traceback (most recent call last): File "/tmp/tmp491b1qf7/tmptsq8ifji.py", line 1, in <module> x, y = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s243332953
p02399
u316246166
1545907033
Python
Python3
py
Runtime Error
0
0
51
a, b = float(input().split) print(a//b, a%b, a/b)
Traceback (most recent call last): File "/tmp/tmpee0vojpw/tmpd7aoi3dc.py", line 1, in <module> a, b = float(input().split) ^^^^^^^ EOFError: EOF when reading a line
s685480469
p02399
u316246166
1545907053
Python
Python3
py
Runtime Error
0
0
77
#a, b = input().split() a, b = float(input().split()) print(a//b, a%b, a/b)
Traceback (most recent call last): File "/tmp/tmprk240__z/tmp_8odl6_4.py", line 2, in <module> a, b = float(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s486868229
p02399
u498462680
1546256459
Python
Python3
py
Runtime Error
0
0
129
a,b = [double(i) for i in input().split()] d = int(a/b) r = int(a) % int(b) f = a/b print(str(d) + " " + str(r) + " " + str(f))
Traceback (most recent call last): File "/tmp/tmpsfm_fa6q/tmpw2pxyr3a.py", line 1, in <module> a,b = [double(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line