結果
問題 | No.2989 Fibonacci Prize |
ユーザー | Shirotsume |
提出日時 | 2024-12-14 00:41:59 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,414 bytes |
コンパイル時間 | 169 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 68,976 KB |
最終ジャッジ日時 | 2024-12-14 00:42:08 |
合計ジャッジ時間 | 7,375 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
62,080 KB |
testcase_01 | AC | 55 ms
62,080 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | AC | 54 ms
62,208 KB |
testcase_15 | AC | 52 ms
62,592 KB |
testcase_16 | AC | 53 ms
62,336 KB |
testcase_17 | AC | 59 ms
62,208 KB |
testcase_18 | AC | 52 ms
62,336 KB |
testcase_19 | AC | 54 ms
62,592 KB |
testcase_20 | AC | 53 ms
62,336 KB |
testcase_21 | AC | 54 ms
62,208 KB |
testcase_22 | AC | 55 ms
61,952 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | WA | - |
testcase_65 | AC | 55 ms
62,208 KB |
testcase_66 | AC | 60 ms
62,336 KB |
testcase_67 | AC | 54 ms
61,824 KB |
testcase_68 | WA | - |
testcase_69 | AC | 53 ms
62,336 KB |
testcase_70 | AC | 52 ms
62,464 KB |
testcase_71 | AC | 53 ms
62,080 KB |
testcase_72 | WA | - |
testcase_73 | AC | 52 ms
62,336 KB |
testcase_74 | AC | 52 ms
62,080 KB |
testcase_75 | AC | 54 ms
62,592 KB |
testcase_76 | WA | - |
testcase_77 | AC | 53 ms
62,336 KB |
testcase_78 | AC | 55 ms
62,592 KB |
testcase_79 | AC | 51 ms
62,592 KB |
ソースコード
import sys, time, random from collections import deque, Counter, defaultdict def debug(*x):print('debug:',*x, file=sys.stderr) input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 61 - 1 mod = 998244353 # fib = [1, 1] # N, M = [random.randint(1, 100) for _ in range(2)] # for i in range(2, M + 100): # fib.append((fib[-1] + fib[-2])) # ans1 = 0 # for l in range(len(fib)): # for r in range(l + 1, len(fib) + 1): # if sum(fib[l:r]) <= fib[M] and sum(fib[l:r]) % N == 0: # ans1 += 1 # ans2 = 0 # A = [] # for l in range(1, len(fib)): # for r in range(l + 1, len(fib)): # if fib[r] - fib[l] <= fib[M]: # A.append((l, r)) # A.sort() # print(N, M) # for l, r in A: # print(l, r) n, m = mi() if m <= 5000: fib = [1, 2] for i in range(2, m + 100): fib.append((fib[-1] + fib[-2])) ans = 0 for l in range(len(fib)): for r in range(l + 1, len(fib)): if fib[r] - fib[l] <= fib[m - 2] and (fib[r] - fib[l]) % n == 0: ans += 1 print(ans) exit() else: raise Exception fib = [1 % n, 2 % n] s = (1, 2) S = set([s,]) cnt = 1 while True: fib.append((fib[-1] + fib[-2]) % n) s = (fib[-2], fib[-1]) if s in S: fib.pop() break S.add(s) cnt += 1 print(len(S), cnt)