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
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))
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
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]
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
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
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)
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)
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)
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)
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)
s110459209
p02398
u178329845
1462110934
Python
Python
py
Runtime Error
0
0
54
import sys while True: print "PENIS!!!"*sys.maxint
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
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)
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
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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))
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))
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))
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))
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)
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))
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))
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))
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)
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)
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)
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)
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)
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)
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
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)
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)
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)
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)
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)
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
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...
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...
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...
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...
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...
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))
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)
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
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)
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))
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))
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)
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]))
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...
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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))
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...
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]))
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)
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
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))
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))
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))
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))
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)
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)
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')