結果

問題 No.1043 直列大学
ユーザー AEnAEn
提出日時 2022-05-20 10:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 980 ms / 2,000 ms
コード長 826 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 409,500 KB
最終ジャッジ日時 2024-09-19 18:23:17
合計ジャッジ時間 12,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
72,812 KB
testcase_01 AC 46 ms
68,684 KB
testcase_02 AC 63 ms
77,900 KB
testcase_03 AC 46 ms
69,768 KB
testcase_04 AC 47 ms
69,072 KB
testcase_05 AC 46 ms
69,428 KB
testcase_06 AC 47 ms
69,804 KB
testcase_07 AC 57 ms
74,592 KB
testcase_08 AC 57 ms
74,552 KB
testcase_09 AC 203 ms
153,904 KB
testcase_10 AC 242 ms
175,796 KB
testcase_11 AC 588 ms
305,596 KB
testcase_12 AC 980 ms
409,500 KB
testcase_13 AC 580 ms
300,032 KB
testcase_14 AC 636 ms
302,528 KB
testcase_15 AC 853 ms
367,248 KB
testcase_16 AC 593 ms
284,484 KB
testcase_17 AC 251 ms
170,732 KB
testcase_18 AC 269 ms
182,976 KB
testcase_19 AC 562 ms
285,684 KB
testcase_20 AC 257 ms
174,908 KB
testcase_21 AC 540 ms
273,892 KB
testcase_22 AC 523 ms
265,428 KB
testcase_23 AC 976 ms
386,144 KB
testcase_24 AC 321 ms
193,712 KB
testcase_25 AC 466 ms
251,240 KB
testcase_26 AC 672 ms
303,512 KB
testcase_27 AC 196 ms
143,164 KB
testcase_28 AC 428 ms
250,504 KB
testcase_29 AC 123 ms
110,856 KB
testcase_30 AC 428 ms
237,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
V = list(map(int, input().split()))
R = list(map(int, input().split()))
A, B = map(int,input().split())

dp = [[0]*(10**5+1) for _ in range(N)]
dp1 = [[0]*(10**5+1) for _ in range(M)]
dp[0][0] = 1;dp[0][V[0]] = 1
dp1[0][0] = 1;dp1[0][R[0]] = 1
for i in range(1, N):
    for j in range(10**5+1):
        dp[i][j] += dp[i-1][j] 
        if dp[i-1][j] > 0:
            dp[i][j+V[i]] += dp[i-1][j]
for i in range(1, M):
    for j in range(10**5+1):
        dp1[i][j] += dp1[i-1][j] 
        if dp1[i-1][j] > 0:
            dp1[i][j+R[i]] += dp1[i-1][j]
from itertools import accumulate
VV = list(accumulate(dp[-1]))
res = 0
mod = 10**9+7
for i in range(1,len(dp1[-1])):
    if dp1[-1][i] > 0 and A*i<=10**5:
        res += (VV[min(10**5, B*i)] - VV[A*i-1])*dp1[-1][i]
        res %= mod
print(res)
0