結果

問題 No.1043 直列大学
ユーザー ronpooronpoo
提出日時 2023-09-06 14:06:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 106,816 KB
最終ジャッジ日時 2024-06-24 08:35:25
合計ジャッジ時間 6,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,476 KB
testcase_01 AC 57 ms
68,724 KB
testcase_02 AC 58 ms
70,172 KB
testcase_03 AC 52 ms
69,684 KB
testcase_04 AC 53 ms
70,204 KB
testcase_05 AC 53 ms
69,408 KB
testcase_06 AC 54 ms
68,724 KB
testcase_07 AC 62 ms
70,540 KB
testcase_08 AC 57 ms
69,976 KB
testcase_09 AC 110 ms
76,292 KB
testcase_10 AC 128 ms
81,548 KB
testcase_11 AC 227 ms
84,236 KB
testcase_12 AC 369 ms
106,816 KB
testcase_13 AC 247 ms
95,604 KB
testcase_14 AC 256 ms
91,384 KB
testcase_15 AC 317 ms
94,548 KB
testcase_16 AC 247 ms
89,556 KB
testcase_17 AC 130 ms
73,316 KB
testcase_18 AC 143 ms
86,420 KB
testcase_19 AC 242 ms
92,868 KB
testcase_20 AC 136 ms
79,364 KB
testcase_21 AC 226 ms
93,024 KB
testcase_22 AC 222 ms
89,556 KB
testcase_23 AC 352 ms
103,840 KB
testcase_24 AC 166 ms
88,380 KB
testcase_25 AC 226 ms
93,820 KB
testcase_26 AC 264 ms
92,728 KB
testcase_27 AC 112 ms
76,192 KB
testcase_28 AC 190 ms
81,544 KB
testcase_29 AC 83 ms
72,896 KB
testcase_30 AC 197 ms
88,784 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

dpv = [0] * (10**5+1)
dpv[0] = 1
for i in range(N):
    for j in range(10**5, -1, -1):
        if V[i] + j <= 10**5 and dpv[j] > 0:
            dpv[V[i]+j] += dpv[j]
            

dpr = [0] * (10**5+1)
dpr[0] = 1
for i in range(M):
    for j in range(10**5, -1, -1):
        if R[i] + j <= 10**5 and dpr[j] > 0:
            dpr[R[i]+j] += dpr[j]
            

accv = [0]
for i in range(10**5):
    accv.append(accv[i] + dpv[i+1])
    
ans = 0
for i in range(1, len(dpr)):
    if dpr[i] == 0:
        continue
    low = max(0, A * i - 1)
    hig = min(B * i, 10**5)
    if low > hig:
        continue
    num = (accv[hig] - accv[low]) * dpr[i]
    ans += (num % MOD)
    ans %= MOD

print(ans)
0