結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー al1ce_nanka189ral1ce_nanka189r
提出日時 2017-06-11 19:16:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 319 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 818,212 KB
最終ジャッジ日時 2024-09-24 16:24:45
合計ジャッジ時間 3,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 36 ms
15,616 KB
testcase_09 AC 913 ms
467,712 KB
testcase_10 MLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

import math

#-------
# Initialize
N,M = map(int, input().split())
array = [0] * N

#-------
# Define
def fib(n):
    array[0] = 0
    array[1] = 1
    for i in range(2, n, 1):
        array[i] = array[i-1] + array[i-2]
    return array[n-1]

#-------
# Do
print(fib(N) % M)

#-------
# Output
0