restructure zeta/** to storage/zeta/**

This commit is contained in:
2025-05-10 21:54:24 +09:00
parent 2886820691
commit 2f2e0759fd
407 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
import sys
import bisect
input = sys.stdin.readline
Mem = [1, 2, 3]
def fib_count(a: int, b: int):
if b <= Mem[-1]:
pass
else:
while b > Mem[-1]:
Mem.append(Mem[-1] + Mem[-2])
right = bisect.bisect_right(Mem, b)
left = bisect.bisect_left(Mem, a)
return right - left
if __name__ == "__main__":
while True:
a, b = map(int, input().split())
if a == b == 0:
break
else:
print(fib_count(a, b))