s_id
stringlengths
10
10
p_id
stringlengths
6
6
u_id
stringlengths
10
10
date
stringlengths
10
10
language
stringclasses
1 value
original_language
stringclasses
11 values
filename_ext
stringclasses
1 value
status
stringclasses
1 value
cpu_time
stringlengths
1
5
memory
stringlengths
1
7
code_size
stringlengths
1
6
code
stringlengths
1
539k
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}")
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)
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)
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)
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)
s029185188
p02398
u184749404
1541162416
Python
Python3
py
Runtime Error
0
0
34
a,b,c = map(int,Input().split())
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]))
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)
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)
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)
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)
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)
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)
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)
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)
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}')
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}')
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)
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)
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)
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))
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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 ...
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))
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)
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
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)
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)
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)
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)
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)
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)
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)
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))
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
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
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
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
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
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()
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()
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
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
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
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)
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)
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)
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) ~
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)
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)
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)
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)
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)
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)
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)
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)
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)
s323400540
p02398
u605525736
1439526787
Python
Python3
py
Runtime Error
0
0
42
(a, b, c) = [int(i) for i in input().split
s771074835
p02398
u605525736
1439526824
Python
Python3
py
Runtime Error
0
0
42
(a, b, c) = [int(i) for i in input().split
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
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
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
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
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
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
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'
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
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
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
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"
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"
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"
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
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
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
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)
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
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
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
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'
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)
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)
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)
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
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
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
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
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)
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))
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