結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー MMMM
提出日時 2024-09-15 16:38:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 732 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,776 KB
最終ジャッジ日時 2024-09-15 16:38:57
合計ジャッジ時間 31,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 34 ms
10,624 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 31 ms
10,496 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 31 ms
10,496 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 207 ms
23,760 KB
testcase_25 AC 174 ms
22,328 KB
testcase_26 AC 235 ms
25,552 KB
testcase_27 AC 314 ms
31,632 KB
testcase_28 AC 309 ms
34,296 KB
testcase_29 AC 112 ms
18,256 KB
testcase_30 AC 504 ms
48,524 KB
testcase_31 AC 292 ms
32,000 KB
testcase_32 AC 583 ms
50,336 KB
testcase_33 AC 547 ms
49,352 KB
testcase_34 AC 52 ms
12,416 KB
testcase_35 AC 259 ms
29,960 KB
testcase_36 AC 407 ms
35,916 KB
testcase_37 AC 603 ms
54,360 KB
testcase_38 AC 374 ms
39,292 KB
testcase_39 AC 99 ms
17,028 KB
testcase_40 AC 301 ms
31,812 KB
testcase_41 AC 143 ms
20,304 KB
testcase_42 AC 38 ms
11,392 KB
testcase_43 AC 68 ms
13,824 KB
testcase_44 AC 544 ms
54,516 KB
testcase_45 AC 525 ms
54,640 KB
testcase_46 AC 188 ms
23,220 KB
testcase_47 AC 175 ms
24,320 KB
testcase_48 AC 353 ms
34,296 KB
testcase_49 AC 650 ms
41,804 KB
testcase_50 AC 621 ms
41,560 KB
testcase_51 AC 649 ms
41,588 KB
testcase_52 AC 628 ms
41,748 KB
testcase_53 AC 646 ms
41,668 KB
testcase_54 AC 658 ms
59,524 KB
testcase_55 AC 681 ms
59,652 KB
testcase_56 AC 627 ms
59,492 KB
testcase_57 AC 732 ms
59,776 KB
testcase_58 AC 579 ms
59,524 KB
testcase_59 AC 703 ms
59,524 KB
testcase_60 AC 694 ms
59,560 KB
testcase_61 AC 698 ms
59,524 KB
testcase_62 AC 696 ms
59,656 KB
testcase_63 AC 709 ms
59,776 KB
testcase_64 AC 567 ms
59,524 KB
testcase_65 AC 680 ms
59,620 KB
testcase_66 AC 681 ms
59,528 KB
testcase_67 AC 581 ms
59,596 KB
testcase_68 AC 582 ms
59,656 KB
testcase_69 AC 645 ms
50,428 KB
testcase_70 AC 619 ms
50,252 KB
testcase_71 AC 645 ms
50,296 KB
testcase_72 AC 651 ms
50,308 KB
testcase_73 AC 632 ms
50,172 KB
testcase_74 AC 300 ms
29,564 KB
testcase_75 AC 624 ms
50,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, H = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

A_cumsum = [0] * (N + 1)
B_cumsum = [0] * (N + 1)
B_cumsum_weighted = [0] * (N + 1)

for i in range(1, N + 1):
    A_cumsum[i] = A_cumsum[i - 1] + A[i - 1]
    B_cumsum[i] = B_cumsum[i - 1] + B[i - 1]
    B_cumsum_weighted[i] = B_cumsum_weighted[i - 1] + i * B[i - 1]

max_satisfaction = 0
L = 1

for R in range(1, N + 1):
    while L <= R:
        fatigue = (B_cumsum_weighted[R] - B_cumsum_weighted[L - 1]) - (L - 1) * (B_cumsum[R] - B_cumsum[L - 1])
        if fatigue <= H:
            break
        L += 1
    if L > R:
        continue
    satisfaction = A_cumsum[R] - A_cumsum[L - 1]
    if satisfaction > max_satisfaction:
        max_satisfaction = satisfaction

print(max_satisfaction)
0