結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー mastersatoshimastersatoshi
提出日時 2017-06-22 08:49:05
言語 Python2
(2.7.18)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 165,416 KB
最終ジャッジ日時 2024-04-10 08:09:32
合計ジャッジ時間 3,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 10 ms
6,940 KB
testcase_02 AC 10 ms
6,940 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 10 ms
6,940 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 21 ms
9,344 KB
testcase_10 AC 119 ms
38,056 KB
testcase_11 AC 529 ms
165,252 KB
testcase_12 AC 528 ms
165,416 KB
testcase_13 AC 526 ms
165,352 KB
testcase_14 AC 522 ms
165,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#import pdb; pdb.set_trace()
import sys

def main():
    (n,m) = map(int,raw_input().split())
    
    n0 = 0
    n1 = 1
    
    for i in range(n - 2):
        
        tmp = n1
        n1 = (n1 + n0)% m
        n0 = tmp 
    
    print n1
    
if __name__ == '__main__':
    main()
0