結果

問題 No.1043 直列大学
ユーザー konchanksukonchanksu
提出日時 2020-05-02 18:00:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-06-09 19:40:22
合計ジャッジ時間 27,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
13,440 KB
testcase_01 AC 71 ms
13,312 KB
testcase_02 AC 74 ms
13,312 KB
testcase_03 AC 71 ms
13,312 KB
testcase_04 AC 71 ms
13,440 KB
testcase_05 AC 73 ms
13,312 KB
testcase_06 AC 70 ms
13,184 KB
testcase_07 AC 72 ms
13,440 KB
testcase_08 AC 69 ms
13,312 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
testcase_14 AC 1,576 ms
21,888 KB
testcase_15 AC 1,847 ms
22,272 KB
testcase_16 AC 1,520 ms
21,760 KB
testcase_17 AC 927 ms
20,608 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 TLE -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 515 ms
18,048 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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())

ans = 0

dpr = [0 for i in range(10 ** 5 + 1)]
dpv = [0 for i in range(10 ** 5 + 1)]
dpr[0] = 1
dpv[0] = 1

for i in range(M):
    for j in range(10 ** 3 * i, -1, -1):
        if dpr[j]:
            dpr[j + R[i]] += dpr[j]

for i in range(N):
    for j in range(10 ** 3 * i, -1, -1):
        if dpv[j]:
            dpv[j + V[i]] += dpv[j]

dpv[0] = 0
S = [0 for i in range(10 ** 5 + 1)]

for i in range(1, 10 ** 5 + 1):
    S[i] += S[i - 1] + dpv[i]

for i in range(1, 10 ** 5 + 1):
    if not dpr[i]:
        continue
    ans += (S[min(B * i, 10 ** 5)] - S[min(A * i - 1, 10 ** 5)]) * dpr[i]

print(ans)
        
0