結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー titiatitia
提出日時 2024-02-01 02:38:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 233,216 KB
最終ジャッジ日時 2024-09-28 10:27:18
合計ジャッジ時間 6,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
233,216 KB
testcase_01 AC 340 ms
233,088 KB
testcase_02 AC 348 ms
233,216 KB
testcase_03 AC 342 ms
233,216 KB
testcase_04 AC 338 ms
233,216 KB
testcase_05 AC 334 ms
233,216 KB
testcase_06 AC 334 ms
233,088 KB
testcase_07 AC 330 ms
232,960 KB
testcase_08 AC 347 ms
233,216 KB
testcase_09 AC 345 ms
233,216 KB
testcase_10 AC 341 ms
233,088 KB
testcase_11 AC 338 ms
233,216 KB
testcase_12 AC 329 ms
232,960 KB
testcase_13 AC 336 ms
233,216 KB
testcase_14 AC 339 ms
232,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())

F=[0,0,1,1]

for i in range(5000000):
    F.append((F[-1]+F[-2])%m)

print(F[n])
0