結果

問題 No.2601 Very Poor
ユーザー kemunikukemuniku
提出日時 2024-01-12 21:34:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 110,088 KB
最終ジャッジ日時 2024-09-27 21:28:26
合計ジャッジ時間 4,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,312 KB
testcase_01 AC 37 ms
52,216 KB
testcase_02 AC 37 ms
52,868 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 46 ms
61,872 KB
testcase_06 AC 49 ms
64,096 KB
testcase_07 AC 48 ms
62,840 KB
testcase_08 AC 47 ms
62,748 KB
testcase_09 AC 45 ms
62,304 KB
testcase_10 AC 45 ms
61,428 KB
testcase_11 AC 50 ms
63,916 KB
testcase_12 AC 47 ms
63,360 KB
testcase_13 AC 48 ms
62,160 KB
testcase_14 AC 47 ms
62,704 KB
testcase_15 AC 100 ms
108,096 KB
testcase_16 AC 102 ms
109,776 KB
testcase_17 AC 105 ms
109,472 KB
testcase_18 AC 112 ms
109,764 KB
testcase_19 AC 105 ms
109,852 KB
testcase_20 AC 102 ms
108,728 KB
testcase_21 AC 104 ms
109,960 KB
testcase_22 AC 105 ms
109,504 KB
testcase_23 AC 108 ms
109,668 KB
testcase_24 AC 102 ms
109,732 KB
testcase_25 AC 109 ms
109,464 KB
testcase_26 AC 105 ms
109,656 KB
testcase_27 AC 104 ms
109,548 KB
testcase_28 AC 108 ms
109,680 KB
testcase_29 AC 106 ms
109,536 KB
testcase_30 AC 99 ms
108,380 KB
testcase_31 AC 104 ms
110,088 KB
testcase_32 AC 108 ms
109,604 KB
testcase_33 AC 106 ms
109,876 KB
testcase_34 AC 107 ms
109,472 KB
testcase_35 AC 44 ms
61,560 KB
testcase_36 AC 48 ms
63,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X = map(int,input().split())
A = list(map(int,input().split()))
A = A*2
if sum(A) <= X:
    print(sum(A))
    exit()
#半開区間を意識する
ans = 0
r = 0
now = 0
for l in range(2*N):
    while r < 2*N and now + A[r] <= X:
        now += A[r]
        r += 1
    ans = max(ans,now)
    now -= A[l]
print(ans)
0