結果

問題 No.2601 Very Poor
ユーザー pitPpitP
提出日時 2024-01-12 21:32:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-09-27 21:23:48
合計ジャッジ時間 5,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 36 ms
51,968 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 149 ms
109,440 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 152 ms
109,568 KB
testcase_19 AC 153 ms
109,696 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 150 ms
109,440 KB
testcase_24 AC 153 ms
109,568 KB
testcase_25 AC 154 ms
110,080 KB
testcase_26 AC 152 ms
109,568 KB
testcase_27 AC 155 ms
109,440 KB
testcase_28 AC 155 ms
110,080 KB
testcase_29 AC 151 ms
110,080 KB
testcase_30 AC 152 ms
109,568 KB
testcase_31 AC 153 ms
109,440 KB
testcase_32 AC 154 ms
109,568 KB
testcase_33 AC 157 ms
109,440 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
N, X = map(int, input().split())
A = list(map(int, input().split()))
if sum(A) < X:
    exit(print(N))
if min(A) > X:
    exit(print(0))

acc = [0] * (2 * N + 1)
for i in range(2 * N):
    acc[i + 1] = acc[i] + A[i % N]

# print(acc)
ans = 0
for i in range(N):
    if A[i] > X:
        continue

    r = bisect_right(acc, X + acc[i] - 1)
    # print(r, i)
    ans = max(ans, acc[r - 1] - acc[i])
print(ans)
0