結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー sharusharu
提出日時 2024-03-23 01:38:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,068 KB
最終ジャッジ日時 2024-09-30 12:59:54
合計ジャッジ時間 22,929 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 29 ms
10,496 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 165 ms
18,520 KB
testcase_25 AC 128 ms
18,068 KB
testcase_26 AC 186 ms
19,652 KB
testcase_27 AC 249 ms
23,352 KB
testcase_28 AC 224 ms
25,168 KB
testcase_29 AC 84 ms
15,484 KB
testcase_30 AC 341 ms
33,984 KB
testcase_31 AC 215 ms
23,532 KB
testcase_32 AC 474 ms
35,464 KB
testcase_33 AC 403 ms
34,284 KB
testcase_34 AC 43 ms
11,776 KB
testcase_35 AC 197 ms
22,728 KB
testcase_36 AC 285 ms
26,148 KB
testcase_37 AC 463 ms
37,348 KB
testcase_38 AC 271 ms
28,192 KB
testcase_39 AC 77 ms
14,616 KB
testcase_40 AC 206 ms
23,520 KB
testcase_41 AC 111 ms
16,820 KB
testcase_42 AC 33 ms
11,008 KB
testcase_43 AC 58 ms
12,672 KB
testcase_44 AC 387 ms
37,724 KB
testcase_45 AC 343 ms
37,720 KB
testcase_46 AC 151 ms
19,228 KB
testcase_47 AC 129 ms
19,032 KB
testcase_48 AC 265 ms
25,036 KB
testcase_49 AC 562 ms
23,064 KB
testcase_50 AC 572 ms
22,980 KB
testcase_51 AC 557 ms
23,068 KB
testcase_52 AC 549 ms
23,116 KB
testcase_53 AC 556 ms
22,864 KB
testcase_54 AC 483 ms
42,984 KB
testcase_55 AC 494 ms
40,944 KB
testcase_56 AC 472 ms
43,064 KB
testcase_57 AC 564 ms
43,052 KB
testcase_58 AC 410 ms
42,996 KB
testcase_59 AC 520 ms
42,856 KB
testcase_60 AC 518 ms
43,064 KB
testcase_61 AC 559 ms
42,860 KB
testcase_62 AC 544 ms
42,984 KB
testcase_63 AC 519 ms
43,068 KB
testcase_64 AC 410 ms
42,992 KB
testcase_65 AC 496 ms
42,988 KB
testcase_66 AC 488 ms
42,996 KB
testcase_67 AC 406 ms
42,988 KB
testcase_68 AC 404 ms
42,988 KB
testcase_69 AC 543 ms
32,960 KB
testcase_70 AC 549 ms
32,708 KB
testcase_71 AC 554 ms
32,704 KB
testcase_72 AC 567 ms
32,832 KB
testcase_73 AC 560 ms
32,956 KB
testcase_74 AC 277 ms
21,712 KB
testcase_75 AC 549 ms
32,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, h = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
s = [0]
for i in range(n):
    s.append(s[i] + B[i])
ans = 0
a = 0
b = 0
r = 0
for l in range(n):
    while r < n and b + (r - l + 1) * B[r] <= h:
        b += (r - l + 1) * B[r]
        a += A[r]
        r += 1
    if b <= h:
        ans = max(ans, a)
    if l == r:
        r += 1
    else:
        b -= s[r] - s[l]
        a -= A[l]
print(ans)
0