結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー rlangevinrlangevin
提出日時 2024-05-28 08:56:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 96,896 KB
最終ジャッジ日時 2024-12-20 20:42:16
合計ジャッジ時間 2,008 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,168 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 43 ms
51,584 KB
testcase_03 AC 43 ms
51,688 KB
testcase_04 AC 46 ms
51,556 KB
testcase_05 AC 46 ms
51,584 KB
testcase_06 AC 46 ms
51,712 KB
testcase_07 AC 45 ms
52,024 KB
testcase_08 AC 47 ms
57,856 KB
testcase_09 AC 49 ms
58,624 KB
testcase_10 AC 62 ms
65,664 KB
testcase_11 AC 103 ms
96,640 KB
testcase_12 AC 104 ms
96,544 KB
testcase_13 AC 106 ms
96,688 KB
testcase_14 AC 88 ms
96,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, mod = map(int, input().split())
F = [1] * N
F[0] = 0
for i in range(2, N):
    F[i] = (F[i - 1] + F[i - 2]) % mod
    
print(F[-1])
0