結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー rpy3cpprpy3cpp
提出日時 2017-06-09 22:29:03
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 76,696 KB
実行使用メモリ 76,956 KB
最終ジャッジ日時 2024-09-22 15:10:14
合計ジャッジ時間 2,465 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,784 KB
testcase_01 AC 74 ms
75,584 KB
testcase_02 AC 74 ms
75,812 KB
testcase_03 AC 74 ms
75,144 KB
testcase_04 AC 73 ms
75,392 KB
testcase_05 AC 74 ms
75,684 KB
testcase_06 AC 72 ms
75,548 KB
testcase_07 AC 73 ms
75,268 KB
testcase_08 AC 75 ms
76,320 KB
testcase_09 AC 75 ms
76,296 KB
testcase_10 AC 81 ms
76,444 KB
testcase_11 AC 109 ms
76,200 KB
testcase_12 AC 88 ms
76,196 KB
testcase_13 AC 109 ms
76,956 KB
testcase_14 AC 88 ms
76,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, raw_input().split())
a = 1
b = 0
for n in xrange(N - 1):
    a, b = a + b, a
    a %= M
    b %= M
print(b)
0