結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,620 KB
testcase_01 AC 39 ms
52,300 KB
testcase_02 AC 38 ms
52,696 KB
testcase_03 AC 39 ms
52,204 KB
testcase_04 AC 38 ms
52,984 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 127 ms
108,224 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 125 ms
108,064 KB
testcase_19 AC 124 ms
108,292 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 139 ms
109,648 KB
testcase_24 AC 137 ms
109,664 KB
testcase_25 AC 129 ms
109,812 KB
testcase_26 AC 124 ms
108,296 KB
testcase_27 AC 130 ms
109,864 KB
testcase_28 AC 121 ms
108,232 KB
testcase_29 AC 134 ms
109,944 KB
testcase_30 AC 133 ms
110,120 KB
testcase_31 AC 135 ms
109,460 KB
testcase_32 AC 133 ms
109,464 KB
testcase_33 AC 129 ms
109,564 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
A = list(map(int, input().split()))
if sum(A) < X:
    exit(print(sum(A)))
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]

ans = 0
for i in range(N):
    ok = i; ng = i + N + 1
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if acc[mid] - acc[i] < X:
            ok = mid
        else:
            ng = mid
    ans = max(ans, acc[ok] - acc[i])
print(ans)
0