結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー hitonanodehitonanode
提出日時 2024-04-05 00:30:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-10-01 00:42:11
合計ジャッジ時間 26,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 172 ms
18,592 KB
testcase_25 AC 154 ms
17,796 KB
testcase_26 AC 198 ms
19,932 KB
testcase_27 AC 265 ms
24,424 KB
testcase_28 AC 278 ms
25,276 KB
testcase_29 AC 104 ms
15,348 KB
testcase_30 AC 423 ms
34,312 KB
testcase_31 AC 257 ms
24,596 KB
testcase_32 AC 469 ms
35,568 KB
testcase_33 AC 446 ms
34,512 KB
testcase_34 AC 48 ms
11,776 KB
testcase_35 AC 237 ms
22,532 KB
testcase_36 AC 315 ms
26,124 KB
testcase_37 AC 521 ms
37,440 KB
testcase_38 AC 327 ms
28,164 KB
testcase_39 AC 95 ms
14,852 KB
testcase_40 AC 249 ms
23,752 KB
testcase_41 AC 131 ms
16,540 KB
testcase_42 AC 36 ms
11,264 KB
testcase_43 AC 60 ms
12,800 KB
testcase_44 AC 482 ms
37,832 KB
testcase_45 AC 474 ms
37,828 KB
testcase_46 AC 168 ms
18,304 KB
testcase_47 AC 170 ms
19,128 KB
testcase_48 AC 285 ms
25,272 KB
testcase_49 AC 551 ms
21,876 KB
testcase_50 AC 546 ms
21,884 KB
testcase_51 AC 515 ms
21,876 KB
testcase_52 AC 518 ms
21,892 KB
testcase_53 AC 527 ms
22,076 KB
testcase_54 AC 561 ms
41,028 KB
testcase_55 AC 547 ms
41,144 KB
testcase_56 AC 549 ms
41,172 KB
testcase_57 AC 586 ms
41,172 KB
testcase_58 AC 518 ms
41,172 KB
testcase_59 AC 563 ms
41,148 KB
testcase_60 AC 567 ms
41,148 KB
testcase_61 AC 572 ms
41,176 KB
testcase_62 AC 598 ms
41,040 KB
testcase_63 AC 576 ms
41,016 KB
testcase_64 AC 547 ms
41,028 KB
testcase_65 AC 555 ms
41,144 KB
testcase_66 AC 544 ms
41,024 KB
testcase_67 AC 544 ms
41,172 KB
testcase_68 AC 503 ms
41,300 KB
testcase_69 AC 480 ms
33,020 KB
testcase_70 AC 504 ms
33,020 KB
testcase_71 AC 515 ms
33,020 KB
testcase_72 AC 532 ms
32,896 KB
testcase_73 AC 512 ms
32,900 KB
testcase_74 AC 247 ms
21,692 KB
testcase_75 AC 466 ms
33,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ret = 0

suma = 0
sumb0 = 0
sumb1 = 0

l = 0

for r in range(N):
    # [l, r]
    suma += A[r]

    sumb0 += B[r]
    sumb1 += B[r] * r

    while True:
        # B[l] * 1 + B[l + 1] * 2 + ... + B[r] * (r - l + 1)
        s = sumb1 - sumb0 * (l - 1)
        if s <= H:
            break
        else:
            suma -= A[l]
            sumb0 -= B[l]
            sumb1 -= B[l] * l
            l += 1

    ret = max(ret, suma)

print(ret)
0