結果

問題 No.997 Jumping Kangaroo
ユーザー rlangevinrlangevin
提出日時 2023-08-29 12:42:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 61,956 KB
最終ジャッジ日時 2024-06-09 21:02:47
合計ジャッジ時間 2,258 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,620 KB
testcase_01 AC 31 ms
52,692 KB
testcase_02 AC 31 ms
53,480 KB
testcase_03 AC 31 ms
52,876 KB
testcase_04 AC 31 ms
52,808 KB
testcase_05 AC 31 ms
53,404 KB
testcase_06 AC 31 ms
52,460 KB
testcase_07 AC 31 ms
52,560 KB
testcase_08 AC 32 ms
52,532 KB
testcase_09 AC 32 ms
53,092 KB
testcase_10 AC 34 ms
53,232 KB
testcase_11 AC 31 ms
52,896 KB
testcase_12 AC 33 ms
53,304 KB
testcase_13 AC 34 ms
53,696 KB
testcase_14 AC 34 ms
52,864 KB
testcase_15 AC 33 ms
53,428 KB
testcase_16 AC 39 ms
59,696 KB
testcase_17 AC 32 ms
52,540 KB
testcase_18 AC 36 ms
60,240 KB
testcase_19 AC 35 ms
53,476 KB
testcase_20 AC 39 ms
61,756 KB
testcase_21 AC 34 ms
53,984 KB
testcase_22 AC 37 ms
60,520 KB
testcase_23 AC 38 ms
61,956 KB
testcase_24 AC 33 ms
54,744 KB
testcase_25 AC 33 ms
52,952 KB
testcase_26 AC 31 ms
52,628 KB
testcase_27 AC 31 ms
53,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def Matprod(A, B, mod, N):
    temp = [0] * N*N
    for i in range(N):
        for j in range(N):
            ij = i * N + j
            for k in range(N):
                temp[ij] += A[i*N+k] * B[k*N+j]
                temp[ij] %= mod
    return temp

def Matpow_Linear(A, M, mod, N):
    Mat = [0] * N*N
    for i in range(N):
        Mat[i*N+i] = 1
         
    while M:
        if M & 1:
            Mat = Matprod(Mat, A, mod, N)
        A = Matprod(A, A, mod, N)
        M >>= 1
    return Mat  


N, W, K = map(int, input().split())
mod = 10 ** 9 + 7
A = list(map(int, input().split()))
dp = [0] * (2 * W + 1)
dp[0] = 1
for i in range(1, 2 * W + 1):
    for a in A:
        if i - a >= 0:
            dp[i] += dp[i - a]
            dp[i] %= mod

f1 = dp[W]
f2 = dp[2 * W] - f1**2
f2 %= mod
F = [f1, f2, 1, 0]

F = Matpow_Linear(F, K - 1, mod, 2)
ans = F[0] * f1 + F[1]
print(ans%mod)
0