結果

問題 No.2601 Very Poor
ユーザー lloyz
提出日時 2024-01-16 00:13:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 135,936 KB
最終ジャッジ日時 2024-09-28 02:25:23
合計ジャッジ時間 5,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

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

C = [0]
for i in range(2 * n + 1):
    C.append(C[-1] + A[i % n])
ans = 0
for i in range(n + 1):
    res = C[i] + x
    idx = bisect_right(C, res) - 1
    ans = max(ans, C[idx] - C[i])
print(ans)
0