結果

問題 No.1043 直列大学
ユーザー 双六双六
提出日時 2020-08-20 20:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 72,120 KB
最終ジャッジ日時 2024-06-02 03:22:33
合計ジャッジ時間 4,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
69,576 KB
testcase_01 AC 56 ms
64,664 KB
testcase_02 AC 58 ms
66,496 KB
testcase_03 AC 51 ms
63,628 KB
testcase_04 AC 55 ms
64,880 KB
testcase_05 AC 56 ms
68,160 KB
testcase_06 AC 56 ms
68,040 KB
testcase_07 AC 54 ms
63,868 KB
testcase_08 AC 57 ms
66,868 KB
testcase_09 AC 123 ms
68,516 KB
testcase_10 AC 135 ms
69,200 KB
testcase_11 AC 176 ms
68,112 KB
testcase_12 AC 180 ms
67,436 KB
testcase_13 AC 164 ms
67,568 KB
testcase_14 AC 177 ms
68,980 KB
testcase_15 AC 185 ms
68,148 KB
testcase_16 AC 168 ms
68,844 KB
testcase_17 AC 137 ms
67,200 KB
testcase_18 AC 146 ms
70,232 KB
testcase_19 AC 174 ms
71,252 KB
testcase_20 AC 144 ms
69,764 KB
testcase_21 AC 162 ms
71,552 KB
testcase_22 AC 168 ms
71,412 KB
testcase_23 AC 192 ms
70,920 KB
testcase_24 AC 150 ms
68,548 KB
testcase_25 AC 168 ms
69,760 KB
testcase_26 AC 174 ms
69,940 KB
testcase_27 AC 121 ms
72,120 KB
testcase_28 AC 169 ms
71,708 KB
testcase_29 AC 93 ms
70,236 KB
testcase_30 AC 143 ms
70,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, M = getlist()
	V = getlist()
	R = getlist()
	A, B = getlist()
	
	DPv = [0] * (10 ** 5 + 1)
	DPv[0] = 1
	for i in range(N):
		for j in range(10 ** 5 + 1, -1, -1):
			if j + V[i] <= 10 ** 5:
				DPv[j + V[i]] += DPv[j]
				DPv[j + V[i]] %= con

	
	DPr = [0] * (10 ** 5 + 1)
	DPr[0] = 1
	for i in range(M):
		for j in range(10 ** 5 + 1, -1, -1):
			if j + R[i] <= 10 ** 5:
				DPr[j + R[i]] += DPr[j]
				DPr[j + R[i]] %= con

	# Vの累積
	for i in range(1, 10 ** 5 + 1):
		DPv[i] = (DPv[i - 1] + DPv[i]) % con

	ans = 0
	for i in range(1, 10 ** 5 + 1):
		ans += DPr[i] * (DPv[min(B * i, 10 ** 5)] - DPv[min(A * i - 1, 10 ** 5)])
		ans %= con

	print(ans)

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