結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー dp_ijkdp_ijk
提出日時 2024-03-23 05:12:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 138,028 KB
最終ジャッジ日時 2024-09-30 13:04:04
合計ジャッジ時間 10,735 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 43 ms
58,496 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 43 ms
58,112 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 39 ms
52,864 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 39 ms
52,992 KB
testcase_15 AC 39 ms
52,992 KB
testcase_16 AC 40 ms
52,992 KB
testcase_17 AC 39 ms
52,992 KB
testcase_18 AC 40 ms
52,864 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 39 ms
52,608 KB
testcase_24 AC 87 ms
91,264 KB
testcase_25 AC 87 ms
89,472 KB
testcase_26 AC 90 ms
92,160 KB
testcase_27 AC 103 ms
94,632 KB
testcase_28 AC 115 ms
103,132 KB
testcase_29 AC 70 ms
83,584 KB
testcase_30 AC 136 ms
118,272 KB
testcase_31 AC 108 ms
94,712 KB
testcase_32 AC 139 ms
117,776 KB
testcase_33 AC 139 ms
117,868 KB
testcase_34 AC 61 ms
69,888 KB
testcase_35 AC 102 ms
92,608 KB
testcase_36 AC 118 ms
106,880 KB
testcase_37 AC 154 ms
124,104 KB
testcase_38 AC 129 ms
112,512 KB
testcase_39 AC 73 ms
81,536 KB
testcase_40 AC 109 ms
94,812 KB
testcase_41 AC 84 ms
86,272 KB
testcase_42 AC 49 ms
62,720 KB
testcase_43 AC 70 ms
76,160 KB
testcase_44 AC 151 ms
122,900 KB
testcase_45 AC 141 ms
122,888 KB
testcase_46 AC 92 ms
91,392 KB
testcase_47 AC 84 ms
91,648 KB
testcase_48 AC 106 ms
102,940 KB
testcase_49 AC 154 ms
133,708 KB
testcase_50 AC 156 ms
133,832 KB
testcase_51 AC 154 ms
133,632 KB
testcase_52 AC 154 ms
133,836 KB
testcase_53 AC 157 ms
133,880 KB
testcase_54 AC 163 ms
121,644 KB
testcase_55 AC 157 ms
121,648 KB
testcase_56 AC 157 ms
121,520 KB
testcase_57 AC 162 ms
121,400 KB
testcase_58 AC 154 ms
121,784 KB
testcase_59 AC 151 ms
121,392 KB
testcase_60 AC 157 ms
121,524 KB
testcase_61 AC 149 ms
121,388 KB
testcase_62 AC 156 ms
121,264 KB
testcase_63 AC 158 ms
121,520 KB
testcase_64 AC 154 ms
121,520 KB
testcase_65 AC 163 ms
121,400 KB
testcase_66 AC 159 ms
121,612 KB
testcase_67 AC 155 ms
121,524 KB
testcase_68 AC 152 ms
121,392 KB
testcase_69 AC 148 ms
137,532 KB
testcase_70 AC 150 ms
138,028 KB
testcase_71 AC 149 ms
137,444 KB
testcase_72 AC 147 ms
137,356 KB
testcase_73 AC 148 ms
137,592 KB
testcase_74 AC 97 ms
96,480 KB
testcase_75 AC 148 ms
137,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N, H = map(int, input().split())
A = [int(x) for x in input().split()]
B = [int(x) for x in input().split()]

A_wa = [0] + [*accumulate(A)]
B_wa = [0] + [*accumulate(B)]

r = 0
cost = 0
cands = []
for l in range(N+1):
   if r < l:
      r = l
      cost = 0
   while r < N and cost + (r-l+1) * B[r] <= H:
      cost += (r-l+1) * B[r]
      r += 1
   cands.append(A_wa[r] - A_wa[l])
   cost -= (B_wa[r] - B_wa[l])

print(max(cands))
0