結果

問題 No.1043 直列大学
ユーザー tcltktcltk
提出日時 2021-01-17 23:37:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,612 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,996 KB
最終ジャッジ日時 2024-11-30 05:55:41
合計ジャッジ時間 24,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
11,776 KB
testcase_01 AC 37 ms
11,776 KB
testcase_02 AC 38 ms
11,776 KB
testcase_03 AC 37 ms
11,776 KB
testcase_04 AC 38 ms
11,776 KB
testcase_05 AC 38 ms
11,904 KB
testcase_06 AC 38 ms
11,776 KB
testcase_07 AC 39 ms
11,904 KB
testcase_08 AC 38 ms
11,776 KB
testcase_09 AC 80 ms
12,288 KB
testcase_10 AC 150 ms
12,672 KB
testcase_11 AC 675 ms
14,556 KB
testcase_12 TLE -
testcase_13 AC 1,331 ms
19,036 KB
testcase_14 AC 1,482 ms
19,324 KB
testcase_15 AC 1,749 ms
20,060 KB
testcase_16 AC 1,418 ms
18,848 KB
testcase_17 AC 759 ms
16,580 KB
testcase_18 AC 667 ms
16,724 KB
testcase_19 AC 1,297 ms
18,768 KB
testcase_20 AC 690 ms
16,400 KB
testcase_21 AC 1,135 ms
18,764 KB
testcase_22 AC 1,186 ms
18,500 KB
testcase_23 AC 1,852 ms
19,540 KB
testcase_24 AC 849 ms
17,136 KB
testcase_25 AC 1,273 ms
18,748 KB
testcase_26 AC 1,411 ms
18,760 KB
testcase_27 AC 489 ms
15,792 KB
testcase_28 AC 727 ms
17,416 KB
testcase_29 AC 74 ms
12,480 KB
testcase_30 AC 1,164 ms
19,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """3 3
# 2 3 4
# 10 23 26
# 1 100
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007

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

    SumV = sum(V)
    dpV = [0 for _ in range(SumV+1)]
    dpV[0] = 1
    dpV[V[0]] = 1
    for i in range(0, N-1):
        dpV1 = [0 for _ in range(SumV+1)]
        for v in range(SumV+1):
            if dpV[v] > 0:
                dpV1[v] += dpV[v]
                dpV1[v+V[i+1]] += dpV[v]
        dpV = dpV1

    SumR = sum(R)
    dpR = [0 for _ in range(SumR+1)]
    dpR[0] = 1
    dpR[R[0]] = 1
    for i in range(0, M-1):
        dpR1 = [0 for _ in range(SumR+1)]
        for r in range(SumR+1):
            if dpR[r] > 0:
                dpR1[r] += dpR[r]
                dpR1[r+R[i+1]] += dpR[r]
        dpR = dpR1

    SV = [0 for _ in range(SumV+1)]
    SV[0] = dpV[0]
    for v in range(1, SumV+1):
        SV[v] = SV[v-1] + dpV[v]

    n = 0
    for r in range(1, SumR+1):
        v1 = max(r*A, 1)
        v2 = min(r*B, SumV)
        if v1 <= v2:
            n += dpR[r] * (SV[v2] - SV[v1-1])

    print(n % MOD)


if __name__ == '__main__':
    main()
0