結果

問題 No.1148 土偶Ⅲ
ユーザー 👑 rin204rin204
提出日時 2022-03-23 15:35:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-10-11 18:13:41
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 40 ms
51,328 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 104 ms
76,928 KB
testcase_06 AC 127 ms
78,080 KB
testcase_07 AC 108 ms
77,440 KB
testcase_08 AC 121 ms
77,824 KB
testcase_09 AC 116 ms
77,952 KB
testcase_10 AC 102 ms
77,184 KB
testcase_11 AC 114 ms
78,080 KB
testcase_12 AC 71 ms
68,352 KB
testcase_13 AC 96 ms
76,288 KB
testcase_14 AC 85 ms
73,984 KB
testcase_15 AC 106 ms
77,568 KB
testcase_16 AC 92 ms
76,800 KB
testcase_17 AC 121 ms
78,080 KB
testcase_18 AC 77 ms
69,888 KB
testcase_19 AC 108 ms
76,800 KB
testcase_20 AC 98 ms
77,184 KB
testcase_21 AC 92 ms
76,672 KB
testcase_22 AC 80 ms
72,192 KB
testcase_23 AC 89 ms
76,288 KB
testcase_24 AC 90 ms
76,544 KB
testcase_25 AC 93 ms
76,672 KB
testcase_26 AC 123 ms
78,592 KB
testcase_27 AC 82 ms
74,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
A = [int(input()) for _ in range(n)] + [w + 1]
ans = 0
se = set()
r = 0
tot = 0
for l in range(n):
    while tot + A[r] <= w and A[r] not in se:
        se.add(A[r])
        tot += A[r]
        r += 1
    ans = max(ans, r - l)
    if l == r:
        r += 1
    else:
        se.remove(A[l])
        tot -= A[l]
print(ans)
0