結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー rlangevinrlangevin
提出日時 2024-05-28 08:56:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 98,480 KB
最終ジャッジ日時 2024-05-28 08:57:00
合計ジャッジ時間 2,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,636 KB
testcase_01 AC 32 ms
52,888 KB
testcase_02 AC 31 ms
52,876 KB
testcase_03 AC 32 ms
52,088 KB
testcase_04 AC 32 ms
52,748 KB
testcase_05 AC 32 ms
52,820 KB
testcase_06 AC 33 ms
52,512 KB
testcase_07 AC 34 ms
53,092 KB
testcase_08 AC 35 ms
59,844 KB
testcase_09 AC 37 ms
59,576 KB
testcase_10 AC 45 ms
65,720 KB
testcase_11 AC 83 ms
96,692 KB
testcase_12 AC 75 ms
98,480 KB
testcase_13 AC 77 ms
96,812 KB
testcase_14 AC 68 ms
97,600 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