結果

問題 No.997 Jumping Kangaroo
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-27 04:16:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 1,009 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 63,608 KB
最終ジャッジ日時 2024-06-10 15:55:14
合計ジャッジ時間 2,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,204 KB
testcase_01 AC 37 ms
52,356 KB
testcase_02 AC 38 ms
53,860 KB
testcase_03 AC 36 ms
52,564 KB
testcase_04 AC 36 ms
53,580 KB
testcase_05 AC 37 ms
52,736 KB
testcase_06 AC 36 ms
53,844 KB
testcase_07 AC 37 ms
53,424 KB
testcase_08 AC 36 ms
53,416 KB
testcase_09 AC 37 ms
52,552 KB
testcase_10 AC 36 ms
52,332 KB
testcase_11 AC 35 ms
52,692 KB
testcase_12 AC 35 ms
52,920 KB
testcase_13 AC 38 ms
53,096 KB
testcase_14 AC 38 ms
52,624 KB
testcase_15 AC 38 ms
54,344 KB
testcase_16 AC 44 ms
59,568 KB
testcase_17 AC 37 ms
54,004 KB
testcase_18 AC 42 ms
61,028 KB
testcase_19 AC 37 ms
53,648 KB
testcase_20 AC 45 ms
60,824 KB
testcase_21 AC 37 ms
52,936 KB
testcase_22 AC 45 ms
61,852 KB
testcase_23 AC 48 ms
63,608 KB
testcase_24 AC 37 ms
52,984 KB
testcase_25 AC 37 ms
53,696 KB
testcase_26 AC 37 ms
52,836 KB
testcase_27 AC 37 ms
53,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w, k = map(int, input().split())
A = list(map(int, input().split()))
mod = 10**9+7

dp1 = [0]*(w+1)
dp2 = [0]*(2*w+1)

dp1[0] = 1
for i in range(1, w+1):
    for j in range(n):
        if i-A[j] >= 0:
            dp1[i] += dp1[i-A[j]]
            dp1[i] %= mod

dp2[0] = 1
for i in range(1, 2*w+1):
    if i == w:
        continue
    for j in range(n):
        if i-A[j] >= 0:
            dp2[i] += dp2[i-A[j]]
            dp2[i] %= mod

# A*B
def mul(a, b):
    c = [[0]*len(b[0]) for i in range(len(a))]
    for i in range(len(a)):
        for k in range(len(b)):
            for j in range(len(b[0])):
                c[i][j] = (c[i][j] + a[i][k]*b[k][j])%mod

    return c

#A**n
def pow(a, n):
    b = [[0]*len(a) for i in range(len(a))]
    for i in range(len(a)):
        b[i][i] = 1
    while n > 0:
        if n & 1 == 1:
            b = mul(a, b)
        a = mul(a, a)
        n = n>>1
    return b

X = [[dp1[-1], dp2[-1]], [1, 0]]
Y =  pow(X, k)
ans = Y[1][0]*dp1[-1]+Y[1][1]*1
print(ans%mod)
0