結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー 瀬良奈々葉瀬良奈々葉
提出日時 2024-10-09 18:10:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 153 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-10-09 18:10:48
合計ジャッジ時間 1,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,312 KB
testcase_01 AC 47 ms
61,440 KB
testcase_02 AC 50 ms
61,440 KB
testcase_03 AC 46 ms
61,440 KB
testcase_04 AC 46 ms
61,312 KB
testcase_05 AC 47 ms
61,440 KB
testcase_06 AC 47 ms
61,696 KB
testcase_07 AC 44 ms
61,696 KB
testcase_08 AC 45 ms
61,440 KB
testcase_09 AC 47 ms
61,568 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


print(F[N])
0