結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー kumatan400kumatan400
提出日時 2023-05-13 00:32:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 98,464 KB
最終ジャッジ日時 2024-11-28 21:18:21
合計ジャッジ時間 2,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
97,056 KB
testcase_01 AC 77 ms
97,392 KB
testcase_02 AC 76 ms
97,416 KB
testcase_03 AC 81 ms
97,604 KB
testcase_04 AC 83 ms
98,464 KB
testcase_05 AC 78 ms
98,120 KB
testcase_06 AC 77 ms
97,328 KB
testcase_07 AC 66 ms
96,976 KB
testcase_08 AC 75 ms
97,512 KB
testcase_09 AC 76 ms
96,892 KB
testcase_10 AC 78 ms
97,996 KB
testcase_11 AC 77 ms
97,052 KB
testcase_12 AC 66 ms
97,536 KB
testcase_13 AC 77 ms
97,040 KB
testcase_14 AC 65 ms
97,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(F[N])
0