結果

問題 No.1043 直列大学
ユーザー 👑 KazunKazun
提出日時 2021-04-14 02:13:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 66,448 KB
最終ジャッジ日時 2024-06-02 03:23:51
合計ジャッジ時間 2,775 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,608 KB
testcase_01 AC 34 ms
54,180 KB
testcase_02 AC 32 ms
53,092 KB
testcase_03 AC 31 ms
52,544 KB
testcase_04 AC 33 ms
52,544 KB
testcase_05 AC 32 ms
52,652 KB
testcase_06 AC 32 ms
53,208 KB
testcase_07 AC 31 ms
52,892 KB
testcase_08 AC 32 ms
53,448 KB
testcase_09 AC 41 ms
62,112 KB
testcase_10 AC 45 ms
62,140 KB
testcase_11 AC 62 ms
62,564 KB
testcase_12 AC 112 ms
66,448 KB
testcase_13 AC 68 ms
61,968 KB
testcase_14 AC 72 ms
62,572 KB
testcase_15 AC 74 ms
62,244 KB
testcase_16 AC 69 ms
61,836 KB
testcase_17 AC 58 ms
61,748 KB
testcase_18 AC 63 ms
64,348 KB
testcase_19 AC 71 ms
63,364 KB
testcase_20 AC 59 ms
61,776 KB
testcase_21 AC 65 ms
62,280 KB
testcase_22 AC 69 ms
64,632 KB
testcase_23 AC 76 ms
62,668 KB
testcase_24 AC 61 ms
63,420 KB
testcase_25 AC 68 ms
64,812 KB
testcase_26 AC 68 ms
62,008 KB
testcase_27 AC 48 ms
61,432 KB
testcase_28 AC 54 ms
61,516 KB
testcase_29 AC 40 ms
60,040 KB
testcase_30 AC 62 ms
61,036 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