結果

問題 No.2601 Very Poor
ユーザー lloyzlloyz
提出日時 2024-01-16 00:14:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 135,948 KB
最終ジャッジ日時 2024-09-30 06:39:25
合計ジャッジ時間 5,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,020 KB
testcase_01 AC 33 ms
52,868 KB
testcase_02 AC 37 ms
53,308 KB
testcase_03 AC 32 ms
53,500 KB
testcase_04 AC 32 ms
53,092 KB
testcase_05 AC 46 ms
66,192 KB
testcase_06 AC 46 ms
66,292 KB
testcase_07 AC 48 ms
66,444 KB
testcase_08 AC 48 ms
65,380 KB
testcase_09 AC 49 ms
65,388 KB
testcase_10 AC 46 ms
65,188 KB
testcase_11 AC 49 ms
65,928 KB
testcase_12 AC 46 ms
65,864 KB
testcase_13 AC 46 ms
66,276 KB
testcase_14 AC 45 ms
66,092 KB
testcase_15 AC 148 ms
135,948 KB
testcase_16 AC 147 ms
135,592 KB
testcase_17 AC 151 ms
135,336 KB
testcase_18 AC 152 ms
135,464 KB
testcase_19 AC 151 ms
135,608 KB
testcase_20 AC 165 ms
135,592 KB
testcase_21 AC 152 ms
135,792 KB
testcase_22 AC 157 ms
135,736 KB
testcase_23 AC 150 ms
135,808 KB
testcase_24 AC 159 ms
135,536 KB
testcase_25 AC 155 ms
135,676 KB
testcase_26 AC 152 ms
135,632 KB
testcase_27 AC 151 ms
135,592 KB
testcase_28 AC 155 ms
135,616 KB
testcase_29 AC 155 ms
135,160 KB
testcase_30 AC 155 ms
135,188 KB
testcase_31 AC 154 ms
135,208 KB
testcase_32 AC 151 ms
135,780 KB
testcase_33 AC 154 ms
135,144 KB
testcase_34 AC 151 ms
135,340 KB
testcase_35 AC 45 ms
66,928 KB
testcase_36 AC 47 ms
65,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

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

sumA = sum(A)
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, min(C[idx] - C[i], sumA))
print(ans)
0