結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
78,080 KB
testcase_01 AC 68 ms
74,496 KB
testcase_02 AC 95 ms
83,968 KB
testcase_03 AC 68 ms
74,752 KB
testcase_04 AC 67 ms
75,008 KB
testcase_05 AC 70 ms
75,392 KB
testcase_06 AC 70 ms
75,648 KB
testcase_07 AC 82 ms
79,744 KB
testcase_08 AC 80 ms
79,232 KB
testcase_09 AC 310 ms
156,928 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 465 ms
206,848 KB
testcase_14 AC 484 ms
215,424 KB
testcase_15 AC 513 ms
228,096 KB
testcase_16 AC 479 ms
212,096 KB
testcase_17 AC 363 ms
175,104 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 421 ms
195,072 KB
testcase_22 AC 441 ms
202,368 KB
testcase_23 WA -
testcase_24 AC 399 ms
187,008 KB
testcase_25 AC 461 ms
206,976 KB
testcase_26 AC 489 ms
217,216 KB
testcase_27 AC 276 ms
144,128 KB
testcase_28 AC 459 ms
206,592 KB
testcase_29 AC 197 ms
118,272 KB
testcase_30 AC 364 ms
174,080 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+1) for _ in range(N+1)]
dp2 = [[0]*(10**5+1) for _ in range(M+1)]
dp1[0][0] = 1
dp2[0][0] = 1

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

acc = [0]

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

for i in range(M):
    for j in range(10**5+1):
        dp2[i+1][j] += dp2[i][j]
        dp2[i+1][j] %= MOD
        
        if j+R[i]<=10**5:
            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+1):
    if i*A<=10**5 and i*B<=10**5:
        ans += dp2[M][i]*(acc[i*B+1]-acc[i*A])
        ans %= MOD

print(ans)
0