結果

問題 No.1043 直列大学
ユーザー kohei2019kohei2019
提出日時 2022-07-14 00:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 228,140 KB
最終ジャッジ日時 2024-06-25 05:41:43
合計ジャッジ時間 7,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
72,696 KB
testcase_01 AC 52 ms
64,808 KB
testcase_02 AC 74 ms
75,796 KB
testcase_03 AC 52 ms
64,504 KB
testcase_04 AC 52 ms
65,536 KB
testcase_05 AC 58 ms
67,932 KB
testcase_06 AC 56 ms
68,620 KB
testcase_07 AC 63 ms
70,428 KB
testcase_08 AC 64 ms
71,700 KB
testcase_09 AC 212 ms
149,212 KB
testcase_10 AC 238 ms
164,736 KB
testcase_11 AC 324 ms
213,208 KB
testcase_12 AC 347 ms
227,892 KB
testcase_13 AC 295 ms
199,408 KB
testcase_14 AC 312 ms
209,072 KB
testcase_15 AC 328 ms
222,324 KB
testcase_16 AC 302 ms
205,436 KB
testcase_17 AC 240 ms
168,988 KB
testcase_18 AC 245 ms
171,984 KB
testcase_19 AC 295 ms
200,152 KB
testcase_20 AC 242 ms
170,612 KB
testcase_21 AC 277 ms
190,088 KB
testcase_22 AC 291 ms
198,252 KB
testcase_23 AC 347 ms
228,140 KB
testcase_24 AC 263 ms
179,692 KB
testcase_25 AC 296 ms
200,952 KB
testcase_26 AC 311 ms
210,392 KB
testcase_27 AC 189 ms
139,020 KB
testcase_28 AC 302 ms
200,688 KB
testcase_29 AC 139 ms
112,436 KB
testcase_30 AC 242 ms
169,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
lsV = list(map(int,input().split()))
lsR = list(map(int,input().split()))
A,B = map(int,input().split())
mod = 10**9+7
dpV = [0]*(10**5+2)
dpV[0] = 1
for j in range(N):
    dpV2 = dpV[:]
    for i in range(10**5+1):    
        if i + lsV[j] <= 10**5:
            dpV2[i + lsV[j]] += dpV[i]
            dpV2[i + lsV[j]] %= mod
    dpV = dpV2

dpR = [0]*(10**5+1)
dpR[0] = 1
for j in range(M):
    dpR2 = dpR[:]
    for i in range(10**5+1):    
        if i + lsR[j] <= 10**5:
            dpR2[i + lsR[j]] += dpR[i]
            dpR2[i + lsR[j]] %= mod
    dpR = dpR2


for i in range(1,10**5+2):
    dpV[i] += dpV[i-1]
    dpV[i] %= mod
ans = 0
for j in range(1,10**5+1):
    ans += dpR[j]*(dpV[min(10**5+1,B*j)]-dpV[min(10**5+1,A*j-1)])
    ans %= mod
print(ans)
0