結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,032 KB
testcase_01 AC 44 ms
53,248 KB
testcase_02 AC 48 ms
60,032 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 46 ms
59,648 KB
testcase_08 AC 47 ms
59,904 KB
testcase_09 AC 71 ms
63,488 KB
testcase_10 AC 83 ms
67,092 KB
testcase_11 AC 213 ms
87,544 KB
testcase_12 AC 346 ms
121,144 KB
testcase_13 AC 204 ms
97,732 KB
testcase_14 AC 219 ms
94,048 KB
testcase_15 AC 286 ms
104,236 KB
testcase_16 AC 193 ms
90,412 KB
testcase_17 AC 77 ms
61,696 KB
testcase_18 AC 89 ms
73,856 KB
testcase_19 AC 189 ms
89,552 KB
testcase_20 AC 73 ms
61,568 KB
testcase_21 AC 178 ms
89,404 KB
testcase_22 AC 171 ms
86,160 KB
testcase_23 AC 332 ms
114,612 KB
testcase_24 AC 112 ms
83,328 KB
testcase_25 AC 180 ms
91,232 KB
testcase_26 AC 221 ms
95,320 KB
testcase_27 AC 70 ms
63,232 KB
testcase_28 AC 158 ms
84,176 KB
testcase_29 AC 57 ms
63,104 KB
testcase_30 AC 164 ms
95,580 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