結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー とりゐとりゐ
提出日時 2024-03-22 21:35:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 131,844 KB
最終ジャッジ日時 2024-09-30 11:02:09
合計ジャッジ時間 10,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 44 ms
58,880 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 43 ms
58,624 KB
testcase_09 AC 42 ms
52,992 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 41 ms
52,736 KB
testcase_15 AC 40 ms
52,352 KB
testcase_16 AC 40 ms
52,736 KB
testcase_17 AC 40 ms
52,480 KB
testcase_18 AC 40 ms
52,480 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 41 ms
52,992 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 40 ms
52,608 KB
testcase_24 AC 73 ms
87,680 KB
testcase_25 AC 86 ms
87,552 KB
testcase_26 AC 92 ms
92,032 KB
testcase_27 AC 103 ms
98,944 KB
testcase_28 AC 110 ms
98,176 KB
testcase_29 AC 73 ms
77,568 KB
testcase_30 AC 134 ms
102,772 KB
testcase_31 AC 111 ms
98,816 KB
testcase_32 AC 132 ms
102,924 KB
testcase_33 AC 140 ms
103,280 KB
testcase_34 AC 56 ms
66,688 KB
testcase_35 AC 95 ms
97,152 KB
testcase_36 AC 102 ms
98,816 KB
testcase_37 AC 134 ms
107,212 KB
testcase_38 AC 112 ms
97,792 KB
testcase_39 AC 63 ms
75,520 KB
testcase_40 AC 93 ms
98,944 KB
testcase_41 AC 70 ms
81,792 KB
testcase_42 AC 51 ms
62,592 KB
testcase_43 AC 61 ms
67,840 KB
testcase_44 AC 137 ms
106,640 KB
testcase_45 AC 131 ms
106,772 KB
testcase_46 AC 81 ms
89,760 KB
testcase_47 AC 80 ms
90,076 KB
testcase_48 AC 98 ms
97,920 KB
testcase_49 AC 140 ms
113,536 KB
testcase_50 AC 140 ms
113,536 KB
testcase_51 AC 147 ms
113,536 KB
testcase_52 AC 146 ms
113,664 KB
testcase_53 AC 147 ms
113,664 KB
testcase_54 AC 169 ms
131,840 KB
testcase_55 AC 165 ms
131,844 KB
testcase_56 AC 163 ms
131,460 KB
testcase_57 AC 162 ms
131,648 KB
testcase_58 AC 164 ms
131,460 KB
testcase_59 AC 169 ms
131,452 KB
testcase_60 AC 167 ms
131,712 KB
testcase_61 AC 163 ms
131,336 KB
testcase_62 AC 169 ms
131,460 KB
testcase_63 AC 160 ms
131,336 KB
testcase_64 AC 163 ms
131,584 KB
testcase_65 AC 162 ms
131,336 KB
testcase_66 AC 166 ms
131,344 KB
testcase_67 AC 164 ms
131,328 KB
testcase_68 AC 164 ms
131,588 KB
testcase_69 AC 147 ms
126,852 KB
testcase_70 AC 148 ms
126,848 KB
testcase_71 AC 147 ms
127,104 KB
testcase_72 AC 147 ms
126,716 KB
testcase_73 AC 149 ms
126,984 KB
testcase_74 AC 104 ms
102,784 KB
testcase_75 AC 149 ms
126,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,H=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
ans=0
R=0
cumA=0
cumB=0
resB=0
for L in range(N):
  while R!=N:
    ncumA=cumA+A[R]
    ncumB=cumB+B[R]*(R-L+1)
    nresB=resB+B[R]
    if ncumB<=H:
      R+=1
      cumA=ncumA
      cumB=ncumB
      resB=nresB
    else:
      break
  ans=max(ans,cumA)
  cumA-=A[L]
  cumB-=resB
  resB-=B[L]
print(ans)
0