結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-06 11:14:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 136,064 KB
最終ジャッジ日時 2024-11-23 20:29:45
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
135,936 KB
testcase_01 AC 172 ms
135,808 KB
testcase_02 AC 172 ms
135,936 KB
testcase_03 AC 174 ms
135,680 KB
testcase_04 AC 170 ms
135,936 KB
testcase_05 AC 172 ms
135,936 KB
testcase_06 AC 171 ms
136,064 KB
testcase_07 AC 141 ms
135,680 KB
testcase_08 AC 173 ms
135,848 KB
testcase_09 AC 172 ms
135,808 KB
testcase_10 AC 171 ms
135,808 KB
testcase_11 AC 170 ms
136,060 KB
testcase_12 AC 142 ms
135,808 KB
testcase_13 AC 171 ms
135,808 KB
testcase_14 AC 141 ms
135,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())

f=[0]*10**7
f[1] = 1

for i in range(2,10**7):
    f[i] = f[i-2] + f[i-1]
    f[i] %= m

print(f[n-1]%m)
0