結果

問題 No.1043 直列大学
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-24 23:55:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 68,352 KB
最終ジャッジ日時 2024-10-13 07:38:50
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,336 KB
testcase_01 AC 51 ms
61,952 KB
testcase_02 AC 56 ms
62,592 KB
testcase_03 AC 47 ms
62,080 KB
testcase_04 AC 48 ms
62,080 KB
testcase_05 AC 47 ms
61,696 KB
testcase_06 AC 47 ms
61,696 KB
testcase_07 AC 51 ms
62,720 KB
testcase_08 AC 51 ms
62,848 KB
testcase_09 AC 86 ms
65,664 KB
testcase_10 AC 98 ms
65,152 KB
testcase_11 AC 113 ms
66,816 KB
testcase_12 AC 146 ms
65,920 KB
testcase_13 AC 125 ms
66,304 KB
testcase_14 AC 128 ms
66,176 KB
testcase_15 AC 134 ms
65,152 KB
testcase_16 AC 125 ms
64,872 KB
testcase_17 AC 104 ms
64,896 KB
testcase_18 AC 104 ms
66,944 KB
testcase_19 AC 129 ms
68,352 KB
testcase_20 AC 103 ms
67,200 KB
testcase_21 AC 117 ms
66,816 KB
testcase_22 AC 118 ms
65,408 KB
testcase_23 AC 140 ms
65,792 KB
testcase_24 AC 111 ms
65,536 KB
testcase_25 AC 126 ms
65,664 KB
testcase_26 AC 131 ms
67,072 KB
testcase_27 AC 85 ms
64,512 KB
testcase_28 AC 114 ms
65,920 KB
testcase_29 AC 69 ms
65,152 KB
testcase_30 AC 106 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

M = 10**5+5
dpV = [0]*M
dpR = [0]*M
dpV[0] = 1
dpR[0] = 1

for v in V:
    for i in range(M)[::-1]:
        if dpV[i] == 0:
            continue
        dpV[i+v] += dpV[i]
        dpV[i+v] %= mod
    
for r in R:
    for i in range(M)[::-1]:
        if dpR[i] == 0:
            continue
        dpR[i+r] += dpR[i]
        dpR[i+r] %= mod

cumR = [0]*M
for i in range(M):
    cumR[i] = cumR[i-1]+dpR[i]
    cumR[i] %= mod

ans = 0
for i in range(1,M):
    if dpV[i] == 0:
        continue
    r = i//a
    l = (i+b-1)//b

    if r == 0:
        continue
    count = cumR[r]-cumR[max(l-1,0)]

    ans += dpV[i]*count%mod
    ans %= mod
print(ans)
0