結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー timitimi
提出日時 2024-03-02 15:45:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 158,068 KB
最終ジャッジ日時 2024-09-29 16:02:42
合計ジャッジ時間 14,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,400 KB
testcase_01 AC 46 ms
54,564 KB
testcase_02 AC 41 ms
54,116 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 41 ms
54,400 KB
testcase_06 AC 47 ms
61,440 KB
testcase_07 AC 42 ms
54,656 KB
testcase_08 AC 47 ms
60,712 KB
testcase_09 AC 44 ms
54,528 KB
testcase_10 AC 42 ms
54,656 KB
testcase_11 AC 44 ms
54,528 KB
testcase_12 AC 43 ms
54,272 KB
testcase_13 AC 43 ms
54,144 KB
testcase_14 AC 44 ms
54,912 KB
testcase_15 AC 43 ms
54,656 KB
testcase_16 AC 43 ms
55,424 KB
testcase_17 AC 44 ms
54,520 KB
testcase_18 AC 43 ms
55,000 KB
testcase_19 AC 39 ms
54,928 KB
testcase_20 AC 42 ms
55,408 KB
testcase_21 AC 40 ms
54,372 KB
testcase_22 AC 40 ms
55,256 KB
testcase_23 AC 42 ms
56,324 KB
testcase_24 AC 84 ms
92,152 KB
testcase_25 AC 87 ms
89,296 KB
testcase_26 AC 92 ms
91,700 KB
testcase_27 AC 107 ms
98,904 KB
testcase_28 AC 116 ms
103,444 KB
testcase_29 AC 82 ms
84,152 KB
testcase_30 AC 146 ms
123,156 KB
testcase_31 AC 110 ms
99,624 KB
testcase_32 AC 144 ms
123,348 KB
testcase_33 AC 152 ms
123,796 KB
testcase_34 AC 70 ms
72,448 KB
testcase_35 AC 107 ms
95,820 KB
testcase_36 AC 117 ms
105,340 KB
testcase_37 AC 176 ms
148,356 KB
testcase_38 AC 128 ms
110,080 KB
testcase_39 AC 81 ms
82,156 KB
testcase_40 AC 107 ms
98,936 KB
testcase_41 AC 89 ms
87,724 KB
testcase_42 AC 55 ms
66,456 KB
testcase_43 AC 61 ms
73,308 KB
testcase_44 AC 172 ms
148,372 KB
testcase_45 AC 166 ms
148,380 KB
testcase_46 AC 89 ms
91,388 KB
testcase_47 AC 92 ms
91,796 KB
testcase_48 AC 115 ms
103,380 KB
testcase_49 AC 168 ms
133,720 KB
testcase_50 AC 167 ms
133,100 KB
testcase_51 AC 165 ms
133,312 KB
testcase_52 AC 163 ms
133,976 KB
testcase_53 AC 165 ms
133,632 KB
testcase_54 AC 186 ms
157,576 KB
testcase_55 AC 183 ms
157,880 KB
testcase_56 AC 180 ms
157,500 KB
testcase_57 AC 179 ms
157,812 KB
testcase_58 AC 181 ms
157,824 KB
testcase_59 AC 186 ms
157,708 KB
testcase_60 AC 183 ms
158,004 KB
testcase_61 AC 177 ms
157,504 KB
testcase_62 AC 181 ms
158,008 KB
testcase_63 AC 180 ms
157,432 KB
testcase_64 AC 181 ms
157,320 KB
testcase_65 AC 180 ms
157,580 KB
testcase_66 AC 184 ms
157,712 KB
testcase_67 AC 181 ms
158,068 KB
testcase_68 AC 180 ms
157,948 KB
testcase_69 AC 165 ms
154,736 KB
testcase_70 AC 167 ms
154,544 KB
testcase_71 AC 167 ms
154,680 KB
testcase_72 AC 167 ms
154,868 KB
testcase_73 AC 167 ms
154,376 KB
testcase_74 AC 111 ms
100,248 KB
testcase_75 AC 167 ms
154,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque  
mod=998244353
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline
import math
N,H=map(int, stdin.readline().split())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
AA=[0]
for a in A:
  AA.append(AA[-1]+a)
BB=[0]
for b in B:
  BB.append(BB[-1]+b)
# print(AA)
# print(BB)

if min(B)>H:
  print(0)
  exit()

ans=0;c=0;r=-1
for l in range(N):
  while r+1<N and c+(r+1-l+1)*B[r+1]<=H:
    c+=(r+1-l+1)*B[r+1]
    r+=1 
  ans=max(ans,AA[r+1]-AA[l])
  c-=BB[r+1]-BB[l]
print(ans)
0