結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー pluto77pluto77
提出日時 2017-06-10 11:12:58
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 1,156 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 115,804 KB
最終ジャッジ日時 2024-09-24 15:29:10
合計ジャッジ時間 3,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,688 KB
testcase_01 AC 77 ms
75,548 KB
testcase_02 AC 73 ms
75,132 KB
testcase_03 AC 76 ms
75,564 KB
testcase_04 AC 74 ms
75,296 KB
testcase_05 AC 73 ms
75,676 KB
testcase_06 AC 76 ms
75,172 KB
testcase_07 AC 73 ms
75,896 KB
testcase_08 AC 78 ms
76,228 KB
testcase_09 AC 79 ms
76,828 KB
testcase_10 AC 104 ms
84,180 KB
testcase_11 AC 202 ms
115,804 KB
testcase_12 AC 200 ms
115,804 KB
testcase_13 AC 198 ms
115,744 KB
testcase_14 AC 198 ms
115,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_526

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

dp=[0 for i in xrange(n+1)]
def fib(x,y):
 if x==0:
  return 0
 dp[0]=0
 dp[1]=1
 for i in xrange(2,x+1):
  dp[i]=(dp[i-2]+dp[i-1])%y
 return dp[x]

print fib(n-1,m)
0