結果

問題 No.1043 直列大学
ユーザー 👑 KazunKazun
提出日時 2021-04-14 02:11:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 717 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-06-30 03:33:59
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 37 ms
52,068 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 38 ms
52,120 KB
testcase_08 RE -
testcase_09 AC 48 ms
61,184 KB
testcase_10 AC 51 ms
61,184 KB
testcase_11 RE -
testcase_12 AC 124 ms
64,512 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 62 ms
60,544 KB
testcase_29 AC 46 ms
59,904 KB
testcase_30 AC 70 ms
60,800 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==0:
        Ans+=Y[r]*X_accum[right]
    else:
        Ans+=Y[r]*(X_accum[right]-X_accum[left-1])
    Ans%=Mod
print(Ans)
0