結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー dp_ijkdp_ijk
提出日時 2024-03-23 05:09:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 466 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 131,104 KB
最終ジャッジ日時 2024-09-30 13:03:53
合計ジャッジ時間 8,912 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,088 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 43 ms
59,264 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 43 ms
57,984 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 44 ms
59,520 KB
testcase_11 AC 44 ms
59,008 KB
testcase_12 AC 41 ms
58,624 KB
testcase_13 AC 42 ms
58,240 KB
testcase_14 AC 39 ms
53,120 KB
testcase_15 AC 39 ms
53,120 KB
testcase_16 AC 38 ms
53,120 KB
testcase_17 AC 39 ms
52,736 KB
testcase_18 AC 39 ms
52,736 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 39 ms
53,248 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 39 ms
52,736 KB
testcase_23 AC 40 ms
53,120 KB
testcase_24 AC 93 ms
91,264 KB
testcase_25 AC 82 ms
89,344 KB
testcase_26 AC 88 ms
92,352 KB
testcase_27 AC 99 ms
94,580 KB
testcase_28 AC 109 ms
103,076 KB
testcase_29 AC 72 ms
82,816 KB
testcase_30 AC 137 ms
116,484 KB
testcase_31 AC 105 ms
94,580 KB
testcase_32 AC 135 ms
117,764 KB
testcase_33 AC 140 ms
117,752 KB
testcase_34 AC 54 ms
67,456 KB
testcase_35 AC 93 ms
92,532 KB
testcase_36 AC 110 ms
106,692 KB
testcase_37 AC 144 ms
123,848 KB
testcase_38 AC 116 ms
112,552 KB
testcase_39 AC 67 ms
80,640 KB
testcase_40 AC 98 ms
94,552 KB
testcase_41 AC 72 ms
85,632 KB
testcase_42 AC 53 ms
65,280 KB
testcase_43 AC 56 ms
71,168 KB
testcase_44 AC 146 ms
123,036 KB
testcase_45 AC 142 ms
123,084 KB
testcase_46 AC 84 ms
91,520 KB
testcase_47 AC 83 ms
91,244 KB
testcase_48 AC 108 ms
102,940 KB
testcase_49 TLE -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
権限があれば一括ダウンロードができます

ソースコード

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