結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | flippergo |
提出日時 | 2021-01-04 01:57:12 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 214 bytes |
コンパイル時間 | 603 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 80,000 KB |
最終ジャッジ日時 | 2024-10-13 19:50:43 |
合計ジャッジ時間 | 2,417 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,968 KB |
testcase_01 | AC | 37 ms
51,712 KB |
testcase_02 | AC | 38 ms
51,712 KB |
testcase_03 | AC | 36 ms
51,712 KB |
testcase_04 | AC | 36 ms
51,712 KB |
testcase_05 | AC | 37 ms
51,712 KB |
testcase_06 | AC | 36 ms
51,968 KB |
testcase_07 | AC | 40 ms
57,856 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
ソースコード
N,M = map(int,input().split()) memo = {} def f(x): if x==1: return 0 if x==2: return 1 if x in memo: return memo[x] memo[x] = (f(x-1)+f(x-2))%M return memo[x] print(f(N))