結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー yumechiyumechi
提出日時 2017-06-09 22:43:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 58,796 KB
最終ジャッジ日時 2024-09-22 15:33:25
合計ジャッジ時間 1,893 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,232 KB
testcase_01 AC 37 ms
53,420 KB
testcase_02 AC 36 ms
52,960 KB
testcase_03 AC 36 ms
52,744 KB
testcase_04 AC 38 ms
53,680 KB
testcase_05 AC 37 ms
53,312 KB
testcase_06 AC 37 ms
52,872 KB
testcase_07 AC 36 ms
52,488 KB
testcase_08 AC 44 ms
57,696 KB
testcase_09 AC 42 ms
58,204 KB
testcase_10 AC 66 ms
58,124 KB
testcase_11 AC 165 ms
58,072 KB
testcase_12 AC 167 ms
58,796 KB
testcase_13 AC 163 ms
57,540 KB
testcase_14 AC 163 ms
57,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n, m = map(int, input().split())
    a1, a2 = 0, 1
    for i in range(2, n+1):
        a1, a2 = (a1 + a2) % m, a1 % m
    print(a1)


if __name__=="__main__":
    solve()
0