結果

問題 No.1043 直列大学
ユーザー c-yanc-yan
提出日時 2020-05-02 06:22:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 874 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 35,660 KB
最終ジャッジ日時 2024-06-07 23:08:12
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
17,152 KB
testcase_01 AC 48 ms
11,520 KB
testcase_02 AC 49 ms
11,520 KB
testcase_03 AC 49 ms
11,648 KB
testcase_04 AC 48 ms
11,520 KB
testcase_05 AC 49 ms
11,520 KB
testcase_06 AC 51 ms
11,648 KB
testcase_07 AC 53 ms
11,520 KB
testcase_08 AC 49 ms
11,520 KB
testcase_09 AC 127 ms
17,024 KB
testcase_10 AC 223 ms
18,036 KB
testcase_11 AC 327 ms
17,388 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

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())

vt = {}
vt[0] = 1
for v in V:
    nvt = {}
    for k in vt:
        nvt.setdefault(k + v, 0)
        nvt[k + v] += vt[k]
        nvt.setdefault(k, 0)
        nvt[k] += vt[k]
    vt = nvt
del vt[0]

rt = {}
rt[0] = 1
for r in R:
    nrt = {}
    for k in rt:
        nrt.setdefault(k + r, 0)
        nrt[k + r] += rt[k]
        nrt.setdefault(k, 0)
        nrt[k] += rt[k]
    rt = nrt
del rt[0]

ra = [0] * (100000 + 1)
for k in rt:
    ra[k] = rt[k]

for i in range(1, 100000 + 1):
    ra[i] += ra[i - 1]

result = 0
for k in vt:
    rlow = (k + B - 1) // B - 1
    rhigh = k // A
    if rlow == -1:
        result += ra[rhigh] * vt[k]
    else:
        result += (ra[rhigh] - ra[rlow]) * vt[k]
    result %= 1000000007
print(result)
0