結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー salmon0852salmon0852
提出日時 2021-12-25 14:50:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 136,272 KB
最終ジャッジ日時 2024-09-21 17:11:31
合計ジャッジ時間 1,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,488 KB
testcase_01 AC 35 ms
52,284 KB
testcase_02 AC 33 ms
53,264 KB
testcase_03 AC 32 ms
53,244 KB
testcase_04 AC 34 ms
52,900 KB
testcase_05 AC 34 ms
52,484 KB
testcase_06 AC 34 ms
52,264 KB
testcase_07 AC 35 ms
53,068 KB
testcase_08 AC 36 ms
58,992 KB
testcase_09 AC 38 ms
60,660 KB
testcase_10 AC 50 ms
74,020 KB
testcase_11 AC 101 ms
136,272 KB
testcase_12 AC 88 ms
135,728 KB
testcase_13 AC 101 ms
135,540 KB
testcase_14 AC 90 ms
136,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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