結果

問題 No.1043 直列大学
ユーザー 👑 KazunKazun
提出日時 2021-04-14 02:13:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 65,712 KB
最終ジャッジ日時 2024-12-22 20:14:29
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,192 KB
testcase_01 AC 39 ms
52,216 KB
testcase_02 AC 41 ms
52,576 KB
testcase_03 AC 39 ms
53,268 KB
testcase_04 AC 39 ms
52,244 KB
testcase_05 AC 38 ms
52,668 KB
testcase_06 AC 40 ms
52,200 KB
testcase_07 AC 39 ms
52,736 KB
testcase_08 AC 37 ms
53,088 KB
testcase_09 AC 50 ms
61,188 KB
testcase_10 AC 52 ms
61,600 KB
testcase_11 AC 73 ms
62,472 KB
testcase_12 AC 126 ms
65,712 KB
testcase_13 AC 77 ms
62,916 KB
testcase_14 AC 79 ms
62,200 KB
testcase_15 AC 86 ms
62,060 KB
testcase_16 AC 80 ms
63,196 KB
testcase_17 AC 66 ms
62,760 KB
testcase_18 AC 68 ms
63,868 KB
testcase_19 AC 77 ms
62,540 KB
testcase_20 AC 64 ms
62,032 KB
testcase_21 AC 74 ms
62,644 KB
testcase_22 AC 79 ms
65,176 KB
testcase_23 AC 91 ms
62,084 KB
testcase_24 AC 69 ms
62,572 KB
testcase_25 AC 80 ms
63,264 KB
testcase_26 AC 79 ms
61,920 KB
testcase_27 AC 58 ms
60,908 KB
testcase_28 AC 64 ms
62,452 KB
testcase_29 AC 46 ms
59,844 KB
testcase_30 AC 71 ms
60,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Subsum_Count(L):
    L_sum=sum(L)
    X=[0]*(L_sum+1)
    X[0]=1

    for x in L:
        for a in range(L_sum,x-1,-1):
            X[a]+=X[a-x]
            X[a]%=Mod
    return X

N,M=map(int,input().split())
V=list(map(int,input().split()))
R=list(map(int,input().split()))
A,B=map(int,input().split())

Mod=10**9+7

V_sum=sum(V)
X=Subsum_Count(V)

R_sum=sum(R)
Y=Subsum_Count(R)

X_accum=[0]*len(X)
X_accum[0]=X[0]

for i in range(1,len(X)):
    X_accum[i]=X_accum[i-1]+X[i]
    X_accum[i]%=Mod

Ans=0
for r in range(1,R_sum+1):
    left =max(r*A,0)
    right=min(r*B,V_sum)

    if left>right:
        continue

    if left==0:
        Ans+=Y[r]*X_accum[right]
    else:
        Ans+=Y[r]*(X_accum[right]-X_accum[left-1])
    Ans%=Mod
print(Ans)
0