結果

問題 No.1043 直列大学
ユーザー ronpooronpoo
提出日時 2023-09-06 14:01:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 813 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 106,564 KB
最終ジャッジ日時 2024-06-24 08:31:27
合計ジャッジ時間 6,567 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
69,248 KB
testcase_01 AC 54 ms
68,224 KB
testcase_02 AC 58 ms
68,864 KB
testcase_03 AC 52 ms
68,096 KB
testcase_04 AC 53 ms
68,096 KB
testcase_05 AC 54 ms
68,608 KB
testcase_06 AC 57 ms
68,096 KB
testcase_07 AC 56 ms
69,120 KB
testcase_08 AC 55 ms
68,736 KB
testcase_09 AC 108 ms
75,264 KB
testcase_10 AC 128 ms
80,384 KB
testcase_11 RE -
testcase_12 AC 378 ms
106,564 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 143 ms
84,864 KB
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 AC 117 ms
75,520 KB
testcase_28 AC 189 ms
80,768 KB
testcase_29 AC 83 ms
71,424 KB
testcase_30 AC 197 ms
88,844 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)
    num = (accv[hig] - accv[low]) * dpr[i]
    ans += (num % MOD)
    ans %= MOD

print(ans)
0