結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 13:37:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 238,888 KB
最終ジャッジ日時 2024-11-04 13:37:20
合計ジャッジ時間 2,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,696 KB
testcase_01 AC 37 ms
52,552 KB
testcase_02 AC 36 ms
51,752 KB
testcase_03 AC 37 ms
52,548 KB
testcase_04 AC 37 ms
52,620 KB
testcase_05 AC 37 ms
52,936 KB
testcase_06 AC 36 ms
52,852 KB
testcase_07 AC 36 ms
52,752 KB
testcase_08 AC 42 ms
59,596 KB
testcase_09 AC 45 ms
66,600 KB
testcase_10 AC 92 ms
135,568 KB
testcase_11 AC 235 ms
238,772 KB
testcase_12 AC 219 ms
238,888 KB
testcase_13 AC 255 ms
238,484 KB
testcase_14 AC 219 ms
238,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Fib = [0, 1]
for _ in range(N + 1):
    Fib.append((Fib[-1] + Fib[-2]) % M)

print(Fib[N - 1])
0