結果

問題 No.194 フィボナッチ数列の理解(1)
ユーザー maspymaspy
提出日時 2020-03-28 15:58:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 464 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 250,540 KB
最終ジャッジ日時 2024-06-10 17:31:42
合計ジャッジ時間 6,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 225 ms
18,388 KB
testcase_21 AC 332 ms
49,792 KB
testcase_22 AC 330 ms
49,788 KB
testcase_23 AC 39 ms
12,288 KB
testcase_24 AC 167 ms
29,224 KB
testcase_25 AC 157 ms
27,648 KB
testcase_26 AC 152 ms
27,012 KB
testcase_27 AC 195 ms
31,812 KB
testcase_28 AC 63 ms
15,232 KB
testcase_29 AC 311 ms
46,592 KB
testcase_30 RE -
testcase_31 AC 1,942 ms
250,540 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
MOD = 10 ** 9 + 7


def solve_1(N, K, A):
    S = [0] * (K + 1)
    for i, x in enumerate(A, 1):
        S[i] = S[i - 1] + x
    for n in range(N + 1, K + 1):
        S[n] = 2 * S[n - 1] - S[n - N - 1]
        S[n] %= MOD
    return (S[K] - S[K - 1]) % MOD, S[K]


N, K, *A = map(int, read().split())
print(*solve_1(N, K, A))
0