結果

問題 No.1148 土偶Ⅲ
ユーザー tentententen
提出日時 2020-08-17 18:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 2,456 ms
コンパイル使用メモリ 75,356 KB
実行使用メモリ 48,480 KB
最終ジャッジ日時 2024-10-11 11:13:10
合計ジャッジ時間 15,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,936 KB
testcase_01 AC 130 ms
40,948 KB
testcase_02 AC 131 ms
40,976 KB
testcase_03 AC 132 ms
41,124 KB
testcase_04 AC 119 ms
40,032 KB
testcase_05 AC 462 ms
48,040 KB
testcase_06 AC 656 ms
48,472 KB
testcase_07 AC 535 ms
48,112 KB
testcase_08 AC 625 ms
48,040 KB
testcase_09 AC 628 ms
48,200 KB
testcase_10 AC 477 ms
47,880 KB
testcase_11 AC 602 ms
48,348 KB
testcase_12 AC 238 ms
45,456 KB
testcase_13 AC 285 ms
47,216 KB
testcase_14 AC 268 ms
45,852 KB
testcase_15 AC 584 ms
47,980 KB
testcase_16 AC 377 ms
47,840 KB
testcase_17 AC 672 ms
48,480 KB
testcase_18 AC 220 ms
43,864 KB
testcase_19 AC 490 ms
47,964 KB
testcase_20 AC 537 ms
48,116 KB
testcase_21 AC 478 ms
48,432 KB
testcase_22 AC 247 ms
45,852 KB
testcase_23 AC 293 ms
47,176 KB
testcase_24 AC 363 ms
47,628 KB
testcase_25 AC 355 ms
47,892 KB
testcase_26 AC 600 ms
48,288 KB
testcase_27 AC 278 ms
47,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int w = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        HashSet<Integer> set = new HashSet<>();
        int left = 0;
        int right = -1;
        int sum = 0;
        int max = 0;
        while (right < n - 1) {
            while (right < n - 1 && !set.contains(arr[right + 1]) && sum + arr[right + 1] <= w) {
                right++;
                set.add(arr[right]);
                sum += arr[right];
            }
            max = Math.max(max, right - left + 1);
            set.remove(arr[left]);
            sum -= arr[left];
            left++;
            if (left > right) {
                right = left - 1;
                sum = 0;
            }
        }
        System.out.println(max);
    }
}
0