-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht6.py
74 lines (59 loc) · 1.42 KB
/
t6.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import sys
def hdiv(dividend, divisor, precision=0):
"""
@author: cidplp
@param dividend:
@type dividend:int
@param divisor:
@type divisor:int
@param precision:
@type precision:int
@return:
@rtype:str
"""
if isinstance(precision, int) == False or precision < 0:
print('xx')
return
a = dividend
b = divisor
# 1
if abs(a + b) == abs(a) + abs(b):
flag = 1
else:
flag = -1
# 2
a = abs(a)
b = abs(b)
quotient = a // b
remainder = a % b
if remainder == 0:
return quotient
ans = str(quotient) + '.'
i = 0
while i < precision:
a = remainder * 10
quotient = a // b
remainder = a % b
ans += str(quotient)
if remainder == 0:
break
i += 1
if precision == 0:
ans = ans.replace('.', '')
if flag == -1:
ans = '-' + ans
return ans
def getRes(a, b, s):
strRes = hdiv(a, b, 1000005)
strRes = strRes.split(".")[1] if "." in strRes else "0"
if len(strRes) < 1000000:
strRes = strRes + ('0' * (1000003 - len(strRes)))
findIdx = strRes.find(s)
return -1 if findIdx == -1 else findIdx + 1
if __name__ == "__main__":
sys.stdin = open("input.txt", "r")
a, b = sys.stdin.readline().strip().split()
a = int(a)
b = int(b)
s = sys.stdin.readline().strip()
print(getRes(a, b, s))