結果

問題 No.1043 直列大学
ユーザー terasaterasa
提出日時 2022-06-29 13:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,474 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 72,448 KB
最終ジャッジ日時 2024-05-02 04:42:58
合計ジャッジ時間 5,820 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
70,144 KB
testcase_01 AC 60 ms
64,384 KB
testcase_02 AC 73 ms
69,120 KB
testcase_03 AC 60 ms
64,896 KB
testcase_04 AC 59 ms
64,896 KB
testcase_05 AC 65 ms
67,200 KB
testcase_06 AC 64 ms
67,456 KB
testcase_07 AC 65 ms
66,176 KB
testcase_08 AC 68 ms
67,968 KB
testcase_09 AC 129 ms
69,248 KB
testcase_10 AC 137 ms
69,120 KB
testcase_11 AC 173 ms
67,840 KB
testcase_12 AC 179 ms
68,224 KB
testcase_13 AC 161 ms
68,096 KB
testcase_14 AC 165 ms
68,096 KB
testcase_15 AC 175 ms
68,096 KB
testcase_16 AC 163 ms
67,712 KB
testcase_17 AC 136 ms
67,968 KB
testcase_18 AC 142 ms
71,552 KB
testcase_19 AC 164 ms
70,784 KB
testcase_20 AC 142 ms
71,168 KB
testcase_21 AC 156 ms
70,784 KB
testcase_22 AC 164 ms
72,448 KB
testcase_23 AC 184 ms
70,784 KB
testcase_24 AC 149 ms
69,504 KB
testcase_25 AC 165 ms
69,376 KB
testcase_26 AC 170 ms
69,632 KB
testcase_27 AC 120 ms
71,936 KB
testcase_28 AC 166 ms
72,064 KB
testcase_29 AC 102 ms
72,192 KB
testcase_30 AC 142 ms
72,320 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