結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー lemondolemondo
提出日時 2020-12-04 22:15:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 59,388 KB
最終ジャッジ日時 2024-09-15 08:57:46
合計ジャッジ時間 1,584 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,524 KB
testcase_01 AC 37 ms
52,992 KB
testcase_02 AC 37 ms
52,600 KB
testcase_03 AC 37 ms
53,184 KB
testcase_04 AC 37 ms
53,976 KB
testcase_05 AC 38 ms
52,612 KB
testcase_06 AC 38 ms
52,132 KB
testcase_07 AC 38 ms
53,072 KB
testcase_08 AC 41 ms
59,388 KB
testcase_09 AC 41 ms
58,092 KB
testcase_10 AC 48 ms
57,840 KB
testcase_11 AC 74 ms
57,580 KB
testcase_12 AC 53 ms
58,772 KB
testcase_13 AC 75 ms
58,056 KB
testcase_14 AC 56 ms
58,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return map(int, input().split())
sys.setrecursionlimit(10**9)

N, M = mapint()
old = 0
new = 1
for i in range(2, N):
    new, old = old+new, new
    new %= M
    old %= M
print(new)
0