結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー H20H20
提出日時 2021-01-12 10:58:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 59,296 KB
最終ジャッジ日時 2024-11-21 09:35:19
合計ジャッジ時間 1,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,764 KB
testcase_01 AC 34 ms
52,112 KB
testcase_02 AC 35 ms
52,432 KB
testcase_03 AC 35 ms
52,280 KB
testcase_04 AC 35 ms
51,960 KB
testcase_05 AC 36 ms
52,740 KB
testcase_06 AC 35 ms
52,968 KB
testcase_07 AC 35 ms
52,568 KB
testcase_08 AC 38 ms
58,272 KB
testcase_09 AC 37 ms
57,924 KB
testcase_10 AC 44 ms
58,348 KB
testcase_11 AC 69 ms
58,428 KB
testcase_12 AC 51 ms
57,520 KB
testcase_13 AC 69 ms
58,972 KB
testcase_14 AC 51 ms
59,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
FB=0
FA=1
for i in range(N-1):
    FB,FA=FA,(FB+FA)%M
print(FB)
0