fix 92 100
This commit is contained in:
parent
9754521a99
commit
969812d51c
20
python/100.py
Normal file → Executable file
20
python/100.py
Normal file → Executable file
@ -1,6 +1,14 @@
|
|||||||
a, b = 1, 1
|
|
||||||
n = (a + 1) // 2
|
def gen():
|
||||||
while n < 10 ** 12:
|
a = 1 # for all
|
||||||
a, b = 3 * a + 4 * b, 2 * a + 3 * b
|
b = 1 # for blue
|
||||||
n = (a + 1) // 2
|
while True:
|
||||||
print (b + 1) // 2
|
yield (a + 1) // 2, (b + 1) // 2
|
||||||
|
a, b = 3 * a + 4 * b, 2 * a + 3 * b
|
||||||
|
|
||||||
|
def search(limit):
|
||||||
|
for a, b in gen():
|
||||||
|
if a > limit:
|
||||||
|
return b
|
||||||
|
|
||||||
|
print(search(int(10 ** 12)))
|
||||||
|
9
python/92.py
Normal file → Executable file
9
python/92.py
Normal file → Executable file
@ -1,6 +1,11 @@
|
|||||||
import time
|
import time
|
||||||
from functools import reduce
|
from functools import reduce
|
||||||
from tools import algebra
|
|
||||||
|
def factorial(n, multi=1):
|
||||||
|
if 1 == n:
|
||||||
|
return multi
|
||||||
|
else:
|
||||||
|
return factorial(n - 1, multi * n)
|
||||||
|
|
||||||
def jump(num):
|
def jump(num):
|
||||||
if 9 > num % 10:
|
if 9 > num % 10:
|
||||||
@ -39,7 +44,7 @@ def count(limit, s_num):
|
|||||||
for i in range(len(s_num)):
|
for i in range(len(s_num)):
|
||||||
total *= (limit - i)
|
total *= (limit - i)
|
||||||
for ch in set(list(s_num)):
|
for ch in set(list(s_num)):
|
||||||
total //= algebra.factorial(s_num.count(ch))
|
total //= factorial(s_num.count(ch))
|
||||||
return total
|
return total
|
||||||
|
|
||||||
def statistic(limit):
|
def statistic(limit):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user