結果

問題 No.1043 直列大学
ユーザー roarisroaris
提出日時 2020-05-01 22:03:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,003 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 234,112 KB
最終ジャッジ日時 2024-12-25 10:33:05
合計ジャッジ時間 13,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
77,696 KB
testcase_01 AC 87 ms
74,112 KB
testcase_02 AC 118 ms
83,968 KB
testcase_03 AC 83 ms
74,112 KB
testcase_04 AC 84 ms
74,240 KB
testcase_05 AC 90 ms
75,264 KB
testcase_06 AC 88 ms
75,136 KB
testcase_07 AC 102 ms
79,616 KB
testcase_08 AC 100 ms
78,592 KB
testcase_09 AC 375 ms
156,032 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 543 ms
206,720 KB
testcase_14 AC 574 ms
215,168 KB
testcase_15 AC 621 ms
227,712 KB
testcase_16 AC 566 ms
211,968 KB
testcase_17 AC 436 ms
174,720 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 499 ms
194,688 KB
testcase_22 AC 523 ms
201,856 KB
testcase_23 WA -
testcase_24 AC 479 ms
186,112 KB
testcase_25 AC 545 ms
206,720 KB
testcase_26 AC 572 ms
216,320 KB
testcase_27 AC 322 ms
143,488 KB
testcase_28 AC 535 ms
206,464 KB
testcase_29 AC 240 ms
117,888 KB
testcase_30 AC 435 ms
173,696 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