結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー ydaigoydaigo
提出日時 2020-12-09 21:50:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 127 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-09-19 04:31:02
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,344 KB
testcase_01 AC 48 ms
65,280 KB
testcase_02 AC 117 ms
75,008 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 100 ms
75,392 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = [int(i) for  i in input().split()]
def fib(n):
  if n<=1:
    return n
  return fib(n-2) + fib(n-1)
print(fib(N[0]-1)%N[1])
0