結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー nelfadiumnelfadium
提出日時 2024-09-07 18:49:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 98,312 KB
最終ジャッジ日時 2024-09-07 18:49:44
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
98,312 KB
testcase_01 AC 87 ms
97,756 KB
testcase_02 AC 89 ms
96,984 KB
testcase_03 AC 87 ms
97,048 KB
testcase_04 AC 88 ms
97,444 KB
testcase_05 AC 87 ms
97,540 KB
testcase_06 AC 86 ms
97,036 KB
testcase_07 AC 75 ms
97,268 KB
testcase_08 AC 106 ms
96,984 KB
testcase_09 AC 87 ms
98,104 KB
testcase_10 AC 87 ms
97,364 KB
testcase_11 AC 87 ms
97,092 KB
testcase_12 AC 75 ms
97,516 KB
testcase_13 AC 87 ms
97,052 KB
testcase_14 AC 73 ms
97,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Z = 5 * 10**6 + 1

N, MOD = map(int, input().split())

F = [0] * Z
F[1] = 0
F[2] = 1
for i in range(3, Z):
    F[i] = (F[i-1] + F[i-2]) % MOD

print(F[N])
0