結果

問題 No.1043 直列大学
ユーザー c-yanc-yan
提出日時 2020-05-02 06:25:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,059 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,160 KB
最終ジャッジ日時 2024-06-07 23:10:33
合計ジャッジ時間 4,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
18,592 KB
testcase_01 AC 37 ms
11,520 KB
testcase_02 AC 39 ms
11,520 KB
testcase_03 AC 37 ms
11,648 KB
testcase_04 AC 40 ms
11,648 KB
testcase_05 AC 37 ms
11,520 KB
testcase_06 AC 37 ms
11,520 KB
testcase_07 AC 38 ms
11,520 KB
testcase_08 AC 38 ms
11,520 KB
testcase_09 AC 88 ms
17,024 KB
testcase_10 AC 150 ms
17,916 KB
testcase_11 AC 220 ms
17,524 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 #

def main():
    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)


main()
0