結果

問題 No.1043 直列大学
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-06 20:31:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 244,724 KB
最終ジャッジ日時 2024-06-02 03:22:42
合計ジャッジ時間 8,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
83,900 KB
testcase_01 AC 56 ms
74,312 KB
testcase_02 AC 77 ms
86,532 KB
testcase_03 AC 57 ms
73,928 KB
testcase_04 AC 59 ms
73,996 KB
testcase_05 AC 59 ms
77,124 KB
testcase_06 AC 61 ms
76,828 KB
testcase_07 AC 68 ms
79,736 KB
testcase_08 AC 69 ms
82,456 KB
testcase_09 AC 206 ms
161,812 KB
testcase_10 AC 238 ms
179,908 KB
testcase_11 AC 312 ms
223,112 KB
testcase_12 AC 368 ms
244,724 KB
testcase_13 AC 298 ms
211,708 KB
testcase_14 AC 317 ms
219,244 KB
testcase_15 AC 334 ms
232,660 KB
testcase_16 AC 314 ms
215,880 KB
testcase_17 AC 251 ms
178,792 KB
testcase_18 AC 265 ms
186,948 KB
testcase_19 AC 294 ms
210,532 KB
testcase_20 AC 242 ms
179,632 KB
testcase_21 AC 282 ms
200,264 KB
testcase_22 AC 297 ms
207,584 KB
testcase_23 AC 341 ms
237,980 KB
testcase_24 AC 262 ms
189,248 KB
testcase_25 AC 299 ms
211,144 KB
testcase_26 AC 323 ms
221,444 KB
testcase_27 AC 188 ms
149,156 KB
testcase_28 AC 307 ms
212,012 KB
testcase_29 AC 139 ms
122,340 KB
testcase_30 AC 242 ms
179,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline

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+50
SV = [0]*M
SR = [0]*M

SV[0] = 1
for v in V:
    temp = [0]*M
    for i in range(M):
        temp[i] = SV[i]
    for i in range(M):
        if i+v < M:
            temp[i+v] += SV[i]
            temp[i+v] %= mod
    SV = temp
SR[0] = 1
for r in R:
    temp = [0]*M
    for i in range(M):
        temp[i] = SR[i]
    for i in range(M):
        if i+r < M:
            temp[i+r] += SR[i]
            temp[i+r] %= mod
    SR = temp

from itertools import accumulate
cum = SV
cum = list(accumulate(cum))
ans = 0
for i in range(1, M):
    c = SR[i]
    l = a*i
    r = b*i
    ans += (cum[min(r, M-1)]-cum[min(l-1, M-1)])*c
    ans %= mod
print(ans)
0