結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー JunOnumaJunOnuma
提出日時 2017-06-12 14:33:48
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,897 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 324,488 KB
最終ジャッジ日時 2024-09-24 16:43:50
合計ジャッジ時間 8,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 10 ms
6,944 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 14 ms
6,944 KB
testcase_09 AC 49 ms
12,608 KB
testcase_10 AC 395 ms
69,772 KB
testcase_11 AC 1,897 ms
324,488 KB
testcase_12 AC 1,714 ms
204,392 KB
testcase_13 AC 1,870 ms
324,488 KB
testcase_14 AC 1,873 ms
324,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int, raw_input().split())
l = [0 for _ in range(n)]
l[1] = 1
for i in range(2,n):
    l[i] = (l[i-1] + l[i-2]) % m
print l[n-1]
0