結果

問題 No.2601 Very Poor
ユーザー ShirotsumeShirotsume
提出日時 2024-01-12 21:38:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 110,644 KB
最終ジャッジ日時 2024-09-30 06:17:58
合計ジャッジ時間 4,424 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
56,000 KB
testcase_01 AC 41 ms
56,972 KB
testcase_02 AC 39 ms
55,980 KB
testcase_03 AC 44 ms
56,204 KB
testcase_04 AC 38 ms
55,772 KB
testcase_05 AC 47 ms
64,876 KB
testcase_06 AC 51 ms
67,444 KB
testcase_07 AC 49 ms
65,960 KB
testcase_08 AC 51 ms
65,576 KB
testcase_09 AC 49 ms
64,632 KB
testcase_10 AC 47 ms
65,132 KB
testcase_11 AC 50 ms
66,476 KB
testcase_12 AC 48 ms
65,688 KB
testcase_13 AC 50 ms
66,052 KB
testcase_14 AC 48 ms
65,580 KB
testcase_15 AC 98 ms
110,644 KB
testcase_16 AC 102 ms
110,000 KB
testcase_17 AC 101 ms
110,592 KB
testcase_18 AC 109 ms
110,292 KB
testcase_19 AC 106 ms
109,776 KB
testcase_20 AC 105 ms
110,324 KB
testcase_21 AC 102 ms
110,036 KB
testcase_22 AC 104 ms
110,392 KB
testcase_23 AC 109 ms
110,468 KB
testcase_24 AC 102 ms
110,396 KB
testcase_25 AC 115 ms
110,268 KB
testcase_26 AC 104 ms
110,128 KB
testcase_27 AC 105 ms
110,516 KB
testcase_28 AC 106 ms
110,300 KB
testcase_29 AC 103 ms
110,380 KB
testcase_30 AC 100 ms
110,292 KB
testcase_31 AC 103 ms
110,248 KB
testcase_32 AC 104 ms
110,216 KB
testcase_33 AC 103 ms
110,448 KB
testcase_34 AC 103 ms
110,000 KB
testcase_35 AC 45 ms
63,464 KB
testcase_36 AC 48 ms
65,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, x = mi()

a = li()

if sum(a) <= x:
    print(sum(a))
    exit()
    
a += a

ans = 0
right = 0
#n -> 数列の長さ
summ = 0
for left in range(2 * n):
    while right < 2 * n:
        summ += a[right]
        if summ <= x:
            right += 1
        else:
            summ -= a[right]
            break

    ans = max(ans, summ)

    if right == left:
        right += 1
    else:
        summ -= a[left]
print(ans)
0