結果

問題 No.1043 直列大学
ユーザー roarisroaris
提出日時 2020-05-01 22:23:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,023 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 234,368 KB
最終ジャッジ日時 2024-06-07 10:22:05
合計ジャッジ時間 11,724 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
77,952 KB
testcase_01 AC 73 ms
74,368 KB
testcase_02 AC 100 ms
83,968 KB
testcase_03 AC 75 ms
74,496 KB
testcase_04 AC 72 ms
74,496 KB
testcase_05 AC 73 ms
75,264 KB
testcase_06 AC 74 ms
75,520 KB
testcase_07 AC 87 ms
80,000 KB
testcase_08 AC 84 ms
78,976 KB
testcase_09 AC 318 ms
156,160 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 473 ms
206,976 KB
testcase_14 AC 491 ms
215,552 KB
testcase_15 AC 526 ms
227,584 KB
testcase_16 AC 479 ms
211,968 KB
testcase_17 AC 356 ms
175,104 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 427 ms
194,944 KB
testcase_22 AC 449 ms
201,856 KB
testcase_23 WA -
testcase_24 AC 397 ms
186,624 KB
testcase_25 AC 471 ms
206,848 KB
testcase_26 AC 492 ms
216,832 KB
testcase_27 AC 281 ms
143,616 KB
testcase_28 AC 457 ms
206,592 KB
testcase_29 AC 199 ms
118,272 KB
testcase_30 AC 371 ms
173,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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
dp1 = [[0]*(10**5+100) for _ in range(N+1)]
dp2 = [[0]*(10**5+100) for _ in range(M+1)]
dp1[0][0] = 1
dp2[0][0] = 1

for i in range(N):
    for j in range(10**5+100):
        dp1[i+1][j] += dp1[i][j]
        dp1[i+1][j] %= MOD
        
        if j+V[i]<10**5+100:
            dp1[i+1][j+V[i]] += dp1[i][j]
            dp1[i+1][j+V[i]] %= MOD

acc = [0]

for i in range(10**5+100):
    acc.append((acc[-1]+dp1[N][i])%MOD)

for i in range(M):
    for j in range(10**5+100):
        dp2[i+1][j] += dp2[i][j]
        dp2[i+1][j] %= MOD
        
        if j+R[i]<10**5+100:
            dp2[i+1][j+R[i]] += dp2[i][j]
            dp2[i+1][j+R[i]] %= MOD

ans = 0

for i in range(1, 10**5+100):
    if i*A<10**5+100 and i*B<10**5+100:
        ans += dp2[M][i]*(acc[i*B+1]-acc[i*A])
        ans %= MOD

print(ans)
0