結果

問題 No.2601 Very Poor
ユーザー playerplayer
提出日時 2024-01-14 23:48:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,736 KB
実行使用メモリ 140,592 KB
最終ジャッジ日時 2024-09-30 06:38:04
合計ジャッジ時間 5,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,804 KB
testcase_01 AC 33 ms
53,416 KB
testcase_02 AC 33 ms
52,992 KB
testcase_03 AC 31 ms
53,708 KB
testcase_04 AC 32 ms
53,324 KB
testcase_05 AC 50 ms
65,040 KB
testcase_06 AC 48 ms
65,980 KB
testcase_07 AC 47 ms
66,436 KB
testcase_08 AC 45 ms
66,480 KB
testcase_09 AC 46 ms
65,176 KB
testcase_10 AC 45 ms
66,200 KB
testcase_11 AC 46 ms
65,040 KB
testcase_12 AC 45 ms
65,568 KB
testcase_13 AC 46 ms
64,812 KB
testcase_14 AC 45 ms
66,848 KB
testcase_15 AC 153 ms
140,548 KB
testcase_16 AC 150 ms
140,332 KB
testcase_17 AC 151 ms
139,916 KB
testcase_18 AC 154 ms
140,084 KB
testcase_19 AC 152 ms
139,960 KB
testcase_20 AC 152 ms
140,144 KB
testcase_21 AC 162 ms
140,504 KB
testcase_22 AC 153 ms
140,236 KB
testcase_23 AC 155 ms
140,260 KB
testcase_24 AC 157 ms
139,932 KB
testcase_25 AC 156 ms
140,592 KB
testcase_26 AC 152 ms
140,076 KB
testcase_27 AC 153 ms
139,980 KB
testcase_28 AC 152 ms
140,176 KB
testcase_29 AC 155 ms
139,956 KB
testcase_30 AC 161 ms
139,972 KB
testcase_31 AC 153 ms
140,116 KB
testcase_32 AC 151 ms
140,200 KB
testcase_33 AC 153 ms
140,512 KB
testcase_34 AC 153 ms
140,176 KB
testcase_35 AC 47 ms
65,668 KB
testcase_36 AC 47 ms
65,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

n,x = map(int,input().split())
a = list(map(int,input().split()))

if sum(a) <= x:
    print(sum(a))
    exit()
    
b = a+a
acc = [0]
for i in b:
    acc.append(acc[-1]+i)

ans = 0
   
for i in range(n):
    ind = bisect_right(acc,acc[i]+x)
    tmp = acc[ind-1]-acc[i]
    ans = max(ans,tmp)
    
print(ans)
0