結果

問題 No.1043 直列大学
ユーザー ayaoniayaoni
提出日時 2020-12-18 20:16:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 1,286 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 244,464 KB
最終ジャッジ日時 2024-06-02 03:23:03
合計ジャッジ時間 8,524 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
78,524 KB
testcase_01 AC 50 ms
73,752 KB
testcase_02 AC 76 ms
85,076 KB
testcase_03 AC 53 ms
73,940 KB
testcase_04 AC 53 ms
74,520 KB
testcase_05 AC 58 ms
77,416 KB
testcase_06 AC 57 ms
77,368 KB
testcase_07 AC 68 ms
79,812 KB
testcase_08 AC 68 ms
81,200 KB
testcase_09 AC 245 ms
162,004 KB
testcase_10 AC 275 ms
178,744 KB
testcase_11 AC 369 ms
219,348 KB
testcase_12 AC 414 ms
244,464 KB
testcase_13 AC 332 ms
204,392 KB
testcase_14 AC 345 ms
212,344 KB
testcase_15 AC 378 ms
226,264 KB
testcase_16 AC 345 ms
209,524 KB
testcase_17 AC 265 ms
172,952 KB
testcase_18 AC 280 ms
184,188 KB
testcase_19 AC 330 ms
204,088 KB
testcase_20 AC 262 ms
172,760 KB
testcase_21 AC 314 ms
195,608 KB
testcase_22 AC 332 ms
201,208 KB
testcase_23 AC 392 ms
231,996 KB
testcase_24 AC 297 ms
183,556 KB
testcase_25 AC 330 ms
204,176 KB
testcase_26 AC 356 ms
214,880 KB
testcase_27 AC 209 ms
144,008 KB
testcase_28 AC 345 ms
206,024 KB
testcase_29 AC 145 ms
117,692 KB
testcase_30 AC 265 ms
173,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import accumulate
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = MI()
V,R = [0]+LI(),[0]+LI()
A,B = MI()
mod = 10**9+7

V_count = [[0]*100001 for _ in range(N+1)]
V_count[0][0] = 1
for i in range(1,N+1):
    v = V[i]
    for j in range(100001):
        V_count[i][j] = V_count[i-1][j]
        if j >= v:
            V_count[i][j] += V_count[i-1][j-v]
            V_count[i][j] %= mod

A_V_count = list(accumulate(V_count[-1]))

R_count = [[0]*100001 for _ in range(M+1)]
R_count[0][0] = 1
for i in range(1,M+1):
    r = R[i]
    for j in range(100001):
        R_count[i][j] = R_count[i-1][j]
        if j >= r:
            R_count[i][j] += R_count[i-1][j-r]
            R_count[i][j] %= mod

ans = 0
for i in range(1,100001):
    if A*i > 100000:
        break
    ans += R_count[-1][i]*(A_V_count[min(100000,B*i)]-A_V_count[A*i-1])
    ans %= mod

print(ans)
0