結果

問題 No.194 フィボナッチ数列の理解(1)
ユーザー 👑 rin204rin204
提出日時 2022-03-25 20:52:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 1,136 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 217,344 KB
最終ジャッジ日時 2024-10-14 04:45:06
合計ジャッジ時間 5,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,536 KB
testcase_01 AC 42 ms
53,352 KB
testcase_02 AC 89 ms
76,368 KB
testcase_03 AC 67 ms
70,180 KB
testcase_04 AC 71 ms
73,728 KB
testcase_05 AC 82 ms
73,344 KB
testcase_06 AC 83 ms
75,008 KB
testcase_07 AC 94 ms
76,288 KB
testcase_08 AC 75 ms
70,912 KB
testcase_09 AC 92 ms
76,672 KB
testcase_10 AC 77 ms
71,424 KB
testcase_11 AC 80 ms
71,936 KB
testcase_12 AC 82 ms
73,344 KB
testcase_13 AC 80 ms
72,448 KB
testcase_14 AC 72 ms
68,224 KB
testcase_15 AC 98 ms
76,416 KB
testcase_16 AC 95 ms
76,416 KB
testcase_17 AC 79 ms
71,296 KB
testcase_18 AC 95 ms
76,416 KB
testcase_19 AC 99 ms
76,416 KB
testcase_20 AC 177 ms
215,296 KB
testcase_21 AC 181 ms
217,344 KB
testcase_22 AC 172 ms
210,048 KB
testcase_23 AC 59 ms
67,968 KB
testcase_24 AC 113 ms
135,296 KB
testcase_25 AC 108 ms
125,952 KB
testcase_26 AC 106 ms
126,080 KB
testcase_27 AC 114 ms
137,344 KB
testcase_28 AC 68 ms
79,488 KB
testcase_29 AC 161 ms
191,872 KB
testcase_30 AC 98 ms
76,544 KB
testcase_31 AC 46 ms
54,272 KB
testcase_32 AC 91 ms
76,416 KB
testcase_33 AC 97 ms
76,544 KB
testcase_34 AC 82 ms
73,472 KB
testcase_35 AC 91 ms
76,288 KB
testcase_36 AC 94 ms
76,288 KB
testcase_37 AC 78 ms
71,424 KB
testcase_38 AC 97 ms
76,416 KB
testcase_39 AC 83 ms
74,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
MOD = 10 ** 9 + 7

def matpow(A, B, w):
    l = len(A)
    while w:
        if w & 1:
            C = [0] * l
            for i in range(l):
                for j in range(l):
                    C[i] += A[i][j] * B[j]
                    C[i] %= MOD
            B = C.copy()
        C = [[0] * l for _ in range(l)]
        for i in range(l):
            for j in range(l):
                for k in range(l):
                    C[i][j] += A[i][k] * A[k][j]
                    C[i][j] %= MOD
        A = deepcopy(C)
        w >>= 1
    return B

n, k = map(int, input().split())
A = list(map(int, input().split()))

if k <= 10 ** 6:
    A = [0] + A
    cum = A[:]
    for i in range(1, n + 1):
        cum[i] += cum[i - 1]
    for _ in range(n + 1, k + 1):
        A.append((cum[-1] - cum[-n - 1]) % MOD)
        cum.append((cum[-1] + A[-1]) % MOD)
    print(A[-1], cum[-1])
    
else:
    B = A[::-1] + [0]
    A = [[0] * (n + 1) for _ in range(n + 1)]
    for i in range(n):
        A[0][i] = 1
        A[i + 1][i] = 1
    A[n][n] = 1
    B = matpow(A, B, k - n)
    print(B[0], sum(B) % MOD)
    
    
    
0