結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー kohei2019kohei2019
提出日時 2022-02-06 17:25:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 238,208 KB
最終ジャッジ日時 2024-06-11 13:50:28
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
51,584 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 33 ms
51,584 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 33 ms
51,712 KB
testcase_06 AC 33 ms
51,840 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 38 ms
58,112 KB
testcase_09 AC 43 ms
65,024 KB
testcase_10 AC 96 ms
135,424 KB
testcase_11 AC 331 ms
238,208 KB
testcase_12 AC 322 ms
238,080 KB
testcase_13 AC 328 ms
237,824 KB
testcase_14 AC 324 ms
237,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
ll = [0,1]
for i in range(N):
    ll.append((ll[-1]+ll[-2])%M)

print(ll[N-1])
0