結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー rocoderrocoder
提出日時 2017-07-21 11:10:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 274 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 147,072 KB
最終ジャッジ日時 2024-04-17 09:58:41
合計ジャッジ時間 4,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,368 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 34 ms
11,136 KB
testcase_09 AC 87 ms
14,720 KB
testcase_10 AC 627 ms
50,048 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=(int(i)for i in input(). split ())
F=[0]
F.append(0)
F.append(1)
if N>3:
    i=3
    while i<=N:
   # F[i-2]%=M
   # F[i-1]%=M
     #   print (N)
        Fn=F[i-2]+F[i-1]
     #   print (Fn)
        Fn%=M
        F.append(Fn)
    #    print (F)
        i+=1
print (F[N])
0