結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 11 ms
6,816 KB
testcase_02 AC 9 ms
6,820 KB
testcase_03 AC 9 ms
6,816 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 10 ms
6,820 KB
testcase_06 AC 11 ms
6,820 KB
testcase_07 AC 11 ms
6,820 KB
testcase_08 AC 12 ms
6,820 KB
testcase_09 AC 22 ms
9,344 KB
testcase_10 AC 120 ms
38,144 KB
testcase_11 AC 548 ms
165,364 KB
testcase_12 AC 532 ms
165,320 KB
testcase_13 AC 536 ms
165,336 KB
testcase_14 AC 550 ms
165,316 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