結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー rvbh3o50rvbh3o50
提出日時 2024-06-26 00:19:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 98,324 KB
最終ジャッジ日時 2024-06-26 00:19:35
合計ジャッジ時間 1,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,404 KB
testcase_01 AC 38 ms
52,068 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 38 ms
51,812 KB
testcase_04 AC 39 ms
53,692 KB
testcase_05 AC 38 ms
52,032 KB
testcase_06 AC 38 ms
51,936 KB
testcase_07 AC 38 ms
53,200 KB
testcase_08 AC 41 ms
58,288 KB
testcase_09 AC 43 ms
60,372 KB
testcase_10 AC 51 ms
67,104 KB
testcase_11 AC 89 ms
97,080 KB
testcase_12 AC 75 ms
96,696 KB
testcase_13 AC 88 ms
98,040 KB
testcase_14 AC 75 ms
98,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(F[N-1])
0