結果

問題 No.1043 直列大学
ユーザー 双六双六
提出日時 2020-08-20 20:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 70,784 KB
最終ジャッジ日時 2024-12-22 20:12:57
合計ジャッジ時間 5,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
67,968 KB
testcase_01 AC 66 ms
63,616 KB
testcase_02 AC 70 ms
66,432 KB
testcase_03 AC 60 ms
64,000 KB
testcase_04 AC 58 ms
63,232 KB
testcase_05 AC 66 ms
66,176 KB
testcase_06 AC 62 ms
66,432 KB
testcase_07 AC 62 ms
63,744 KB
testcase_08 AC 63 ms
65,536 KB
testcase_09 AC 138 ms
68,224 KB
testcase_10 AC 152 ms
68,352 KB
testcase_11 AC 195 ms
67,200 KB
testcase_12 AC 206 ms
66,816 KB
testcase_13 AC 181 ms
66,944 KB
testcase_14 AC 191 ms
66,944 KB
testcase_15 AC 206 ms
67,072 KB
testcase_16 AC 186 ms
67,072 KB
testcase_17 AC 152 ms
66,816 KB
testcase_18 AC 179 ms
69,376 KB
testcase_19 AC 186 ms
69,960 KB
testcase_20 AC 157 ms
69,888 KB
testcase_21 AC 176 ms
69,632 KB
testcase_22 AC 190 ms
70,784 KB
testcase_23 AC 211 ms
69,888 KB
testcase_24 AC 165 ms
68,428 KB
testcase_25 AC 182 ms
68,224 KB
testcase_26 AC 193 ms
68,608 KB
testcase_27 AC 130 ms
70,016 KB
testcase_28 AC 188 ms
70,528 KB
testcase_29 AC 103 ms
70,016 KB
testcase_30 AC 159 ms
70,016 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