結果

問題 No.1043 直列大学
ユーザー terasaterasa
提出日時 2022-06-29 13:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,474 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-11-22 15:27:10
合計ジャッジ時間 5,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
70,400 KB
testcase_01 AC 63 ms
65,024 KB
testcase_02 AC 79 ms
69,376 KB
testcase_03 AC 60 ms
64,768 KB
testcase_04 AC 60 ms
65,152 KB
testcase_05 AC 66 ms
68,224 KB
testcase_06 AC 67 ms
67,584 KB
testcase_07 AC 68 ms
66,560 KB
testcase_08 AC 70 ms
67,840 KB
testcase_09 AC 129 ms
69,248 KB
testcase_10 AC 140 ms
69,504 KB
testcase_11 AC 172 ms
68,352 KB
testcase_12 AC 181 ms
68,224 KB
testcase_13 AC 163 ms
68,608 KB
testcase_14 AC 165 ms
68,096 KB
testcase_15 AC 177 ms
68,352 KB
testcase_16 AC 164 ms
68,480 KB
testcase_17 AC 136 ms
68,224 KB
testcase_18 AC 141 ms
71,424 KB
testcase_19 AC 164 ms
71,424 KB
testcase_20 AC 141 ms
71,040 KB
testcase_21 AC 160 ms
71,040 KB
testcase_22 AC 167 ms
72,576 KB
testcase_23 AC 186 ms
71,424 KB
testcase_24 AC 150 ms
70,144 KB
testcase_25 AC 166 ms
69,760 KB
testcase_26 AC 172 ms
69,504 KB
testcase_27 AC 123 ms
72,320 KB
testcase_28 AC 169 ms
72,576 KB
testcase_29 AC 103 ms
72,064 KB
testcase_30 AC 147 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


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

L = 10 ** 5
dpv = [0] * (L + 1)
dpv[0] = 1
for v in V:
    for j in range(L, 0, -1):
        if j - v < 0:
            break
        dpv[j] += dpv[j - v]
        dpv[j] %= mod
for i in range(L):
    dpv[i + 1] += dpv[i]
    dpv[i + 1] %= mod

dpr = [0] * (L + 1)
dpr[0] = 1
for r in R:
    for j in range(L, 0, -1):
        if j - r < 0:
            break
        dpr[j] += dpr[j - r]
        dpr[j] %= mod

ans = 0
for i in range(1, L + 1):
    l = min(A * i, L)
    r = min(B * i, L)
    ans += dpr[i] * (dpv[r] - dpv[l - 1]) % mod
    ans %= mod
print(ans)
0