結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 04:18:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 131,832 KB
最終ジャッジ日時 2024-09-30 13:02:50
合計ジャッジ時間 10,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 44 ms
58,880 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 44 ms
58,496 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 40 ms
52,736 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 40 ms
52,864 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 39 ms
52,096 KB
testcase_23 AC 40 ms
52,608 KB
testcase_24 AC 74 ms
87,808 KB
testcase_25 AC 79 ms
87,772 KB
testcase_26 AC 84 ms
92,032 KB
testcase_27 AC 95 ms
98,688 KB
testcase_28 AC 99 ms
98,048 KB
testcase_29 AC 67 ms
80,000 KB
testcase_30 AC 123 ms
102,988 KB
testcase_31 AC 100 ms
98,780 KB
testcase_32 AC 123 ms
103,560 KB
testcase_33 AC 128 ms
103,356 KB
testcase_34 AC 59 ms
68,736 KB
testcase_35 AC 95 ms
97,408 KB
testcase_36 AC 102 ms
98,816 KB
testcase_37 AC 133 ms
107,212 KB
testcase_38 AC 110 ms
97,920 KB
testcase_39 AC 68 ms
78,336 KB
testcase_40 AC 92 ms
98,744 KB
testcase_41 AC 70 ms
82,432 KB
testcase_42 AC 49 ms
62,464 KB
testcase_43 AC 54 ms
67,840 KB
testcase_44 AC 134 ms
106,812 KB
testcase_45 AC 133 ms
106,824 KB
testcase_46 AC 81 ms
89,600 KB
testcase_47 AC 82 ms
89,984 KB
testcase_48 AC 97 ms
98,048 KB
testcase_49 AC 136 ms
113,536 KB
testcase_50 AC 136 ms
113,664 KB
testcase_51 AC 137 ms
113,792 KB
testcase_52 AC 137 ms
113,664 KB
testcase_53 AC 140 ms
113,664 KB
testcase_54 AC 156 ms
131,576 KB
testcase_55 AC 155 ms
131,832 KB
testcase_56 AC 154 ms
131,584 KB
testcase_57 AC 155 ms
131,440 KB
testcase_58 AC 156 ms
131,400 KB
testcase_59 AC 155 ms
131,440 KB
testcase_60 AC 155 ms
131,572 KB
testcase_61 AC 152 ms
131,516 KB
testcase_62 AC 157 ms
131,576 KB
testcase_63 AC 149 ms
131,316 KB
testcase_64 AC 151 ms
131,340 KB
testcase_65 AC 152 ms
131,424 KB
testcase_66 AC 156 ms
131,320 KB
testcase_67 AC 155 ms
131,448 KB
testcase_68 AC 160 ms
131,456 KB
testcase_69 AC 137 ms
126,716 KB
testcase_70 AC 138 ms
126,792 KB
testcase_71 AC 136 ms
126,964 KB
testcase_72 AC 137 ms
126,712 KB
testcase_73 AC 136 ms
126,832 KB
testcase_74 AC 93 ms
102,528 KB
testcase_75 AC 139 ms
126,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
g=0
r=0
s1=0
s2=0
s3=0
for l in range(n):
	while r+1<=n and s2+(r+1-l)*b[r]<=h:
		s1+=a[r]
		s2+=(r+1-l)*b[r]
		s3+=b[r]
		r+=1
	g=max(g,s1)
	s1-=a[l]
	s2-=s3
	s3-=b[l]
print(g)
0