結果

問題 No.997 Jumping Kangaroo
ユーザー convexineqconvexineq
提出日時 2020-02-21 22:00:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-17 07:37:02
合計ジャッジ時間 1,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 26 ms
10,496 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 28 ms
10,496 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 28 ms
10,624 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

import sys
readline = sys.stdin.readline
read = sys.stdin.read

#n,*a = [int(i) for i in read().split()]
#a = [int(i) for i in readline().split()]
#n = int(input())

MOD=10**9+7

def matmul(A,B,mod): # A,B: 行列
    res = [[0]*len(B[0]) for _ in [None]*len(A)]
    for i, resi in enumerate(res):
        for k, aik in enumerate(A[i]):
            for j,bkj in enumerate(B[k]):
                resi[j] += aik*bkj
                resi[j] %= mod
    return res

def matpow(A,p,M): #A^p mod M
    if p%2:
        return matmul(A, matpow(A,p-1,M), M)
    elif p > 0:
        b = matpow(A,p//2,M)
        return matmul(b,b,M)
    else:
        return [[1 if i == j else 0 for j in range(len(A))] for i in range(len(A))]




n,w,k,*a = [int(i) for i in read().split()]

c = 2*w+1
dp = [0]*c
dp[0] = 1
for i in range(c):
    for ai in a:
        if i+ai >= c: continue
        dp[i+ai] += dp[i]

#print(dp)

y = dp[w]
x = dp[2*w]-y*y

mat = [[0,1],[x,y]]
A = matpow(mat,k,MOD)

print(A[1][1]%MOD)

#print(A)








    


0