結果

問題 No.8038 フィボナッチ数列の周期
ユーザー NPNP
提出日時 2024-02-11 16:55:12
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 509 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 848,968 KB
最終ジャッジ日時 2024-09-28 17:36:09
合計ジャッジ時間 12,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
78,412 KB
testcase_01 AC 84 ms
112,444 KB
testcase_02 AC 35 ms
52,876 KB
testcase_03 AC 39 ms
59,128 KB
testcase_04 AC 38 ms
59,596 KB
testcase_05 AC 37 ms
59,384 KB
testcase_06 MLE -
testcase_07 AC 537 ms
250,308 KB
testcase_08 AC 473 ms
245,520 KB
testcase_09 AC 372 ms
246,176 KB
testcase_10 AC 692 ms
267,932 KB
testcase_11 AC 356 ms
247,512 KB
testcase_12 AC 579 ms
252,164 KB
testcase_13 AC 533 ms
251,608 KB
testcase_14 AC 609 ms
246,676 KB
testcase_15 AC 1,549 ms
291,460 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def fib_modulo(m):
    fib = [0, 1]
    i = 2
    while True:
        fib.append((fib[i-1] + fib[i-2]) % m)
        if fib[i] == fib[1] and fib[i-1] == fib[0]:
            return fib[:-2]
        i += 1

def solve(n, pk):
    MOD = 10**9 + 7
    cycles = [len(fib_modulo(p**k)) for p, k in pk]
    lcm = cycles[0]
    for c in cycles[1:]:
        lcm = lcm * c // math.gcd(lcm, c)
    return lcm % MOD

n = int(input())
pk = [list(map(int, input().split())) for _ in range(n)]
print(solve(n, pk))
0