結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー osrgy01osrgy01
提出日時 2021-02-16 10:41:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 229,932 KB
最終ジャッジ日時 2024-07-26 20:06:13
合計ジャッジ時間 4,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,696 KB
testcase_01 WA -
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 33 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 37 ms
11,136 KB
testcase_09 AC 83 ms
14,592 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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