結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2020-08-02 07:45:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 75,940 KB
最終ジャッジ日時 2024-07-18 04:53:58
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,740 KB
testcase_01 AC 34 ms
52,240 KB
testcase_02 AC 33 ms
53,676 KB
testcase_03 AC 31 ms
52,884 KB
testcase_04 AC 31 ms
52,076 KB
testcase_05 AC 30 ms
52,968 KB
testcase_06 AC 30 ms
52,984 KB
testcase_07 AC 35 ms
59,036 KB
testcase_08 AC 42 ms
66,876 KB
testcase_09 AC 50 ms
75,728 KB
testcase_10 AC 108 ms
75,508 KB
testcase_11 AC 340 ms
75,540 KB
testcase_12 AC 347 ms
75,940 KB
testcase_13 AC 340 ms
75,452 KB
testcase_14 AC 339 ms
75,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
f = [0, 1]

for i in range(n - 2):
    f[i % 2] = sum(f) % m

print(f[(n + 1) % 2])
0