結果

問題 No.1043 直列大学
ユーザー uni_pythonuni_python
提出日時 2020-06-21 18:09:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,008 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 121,356 KB
最終ジャッジ日時 2024-07-03 18:09:51
合計ジャッジ時間 4,655 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,544 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 44 ms
60,288 KB
testcase_03 AC 38 ms
52,992 KB
testcase_04 AC 38 ms
53,196 KB
testcase_05 AC 38 ms
53,376 KB
testcase_06 AC 38 ms
53,120 KB
testcase_07 AC 44 ms
59,884 KB
testcase_08 AC 44 ms
60,288 KB
testcase_09 AC 66 ms
63,744 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 326 ms
121,356 KB
testcase_13 AC 190 ms
97,932 KB
testcase_14 RE -
testcase_15 AC 275 ms
104,700 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 86 ms
74,404 KB
testcase_19 AC 178 ms
89,824 KB
testcase_20 RE -
testcase_21 AC 171 ms
90,244 KB
testcase_22 AC 162 ms
86,412 KB
testcase_23 AC 309 ms
114,868 KB
testcase_24 AC 109 ms
83,384 KB
testcase_25 AC 169 ms
91,612 KB
testcase_26 AC 216 ms
95,348 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 164 ms
96,552 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]*N2
    #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