結果

問題 No.1043 直列大学
ユーザー uni_pythonuni_python
提出日時 2020-06-21 18:10:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 121,212 KB
最終ジャッジ日時 2024-06-02 03:20:51
合計ジャッジ時間 4,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,520 KB
testcase_01 AC 34 ms
53,120 KB
testcase_02 AC 38 ms
60,416 KB
testcase_03 AC 33 ms
52,480 KB
testcase_04 AC 33 ms
52,608 KB
testcase_05 AC 31 ms
52,864 KB
testcase_06 AC 33 ms
52,992 KB
testcase_07 AC 43 ms
60,032 KB
testcase_08 AC 40 ms
60,032 KB
testcase_09 AC 58 ms
63,360 KB
testcase_10 AC 73 ms
66,944 KB
testcase_11 AC 190 ms
87,932 KB
testcase_12 AC 305 ms
121,212 KB
testcase_13 AC 182 ms
97,296 KB
testcase_14 AC 192 ms
93,980 KB
testcase_15 AC 246 ms
104,448 KB
testcase_16 AC 160 ms
90,544 KB
testcase_17 AC 63 ms
61,696 KB
testcase_18 AC 76 ms
74,624 KB
testcase_19 AC 156 ms
89,820 KB
testcase_20 AC 63 ms
61,824 KB
testcase_21 AC 149 ms
89,852 KB
testcase_22 AC 145 ms
86,212 KB
testcase_23 AC 275 ms
114,620 KB
testcase_24 AC 96 ms
83,584 KB
testcase_25 AC 149 ms
91,484 KB
testcase_26 AC 190 ms
95,928 KB
testcase_27 AC 58 ms
63,232 KB
testcase_28 AC 134 ms
84,248 KB
testcase_29 AC 48 ms
63,232 KB
testcase_30 AC 140 ms
95,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    N,M=MI()
    V=LI()
    R=LI()
    A,B=MI()
    
    N2=(1000*N+1)
    dp=[0]*N2
    #dp[i][j]はi番目まで見て,電圧の総和がj.使いまわしてiを無視
    
    dp[0]=1
    for i in range(N):
        v=V[i]
        for j in range(N2-1-v,-1,-1):
            dp[j+v]+=dp[j]
            
    M2=(1000*M+1)
    dpr=[0]*M2
    #dp[i][j]はi番目まで見て,抵抗の総和がj.使いまわしてiを無視
    dpr[0]=1
    
    for i in range(M):
        r=R[i]
        for j in range(M2-1-r,-1,-1):
            dpr[j+r]+=dpr[j]
            
    S=[0]*(N2+1)
    #累積和
    
    for i in range(N2):
        S[i+1]=S[i]+dp[i]

    
    ans=0
    for r in range(1,M2):
        temp=S[min(N2,B*r+1)]-S[min(N2,A*r)]
        ans=(ans+temp*dpr[r])%mod
        
        
    print((ans)%mod)

    


main()
0