結果

問題 No.1148 土偶Ⅲ
ユーザー face4face4
提出日時 2020-08-05 19:56:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 57,808 KB
最終ジャッジ日時 2024-09-17 10:10:50
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,100 KB
testcase_01 AC 53 ms
50,136 KB
testcase_02 AC 53 ms
49,792 KB
testcase_03 AC 53 ms
49,844 KB
testcase_04 AC 53 ms
50,056 KB
testcase_05 AC 156 ms
54,984 KB
testcase_06 AC 227 ms
55,608 KB
testcase_07 AC 200 ms
55,588 KB
testcase_08 AC 214 ms
55,184 KB
testcase_09 AC 213 ms
55,496 KB
testcase_10 AC 163 ms
55,140 KB
testcase_11 AC 228 ms
55,476 KB
testcase_12 AC 114 ms
52,252 KB
testcase_13 AC 121 ms
52,688 KB
testcase_14 AC 121 ms
52,452 KB
testcase_15 AC 200 ms
57,808 KB
testcase_16 AC 149 ms
54,548 KB
testcase_17 AC 213 ms
55,248 KB
testcase_18 AC 88 ms
51,868 KB
testcase_19 AC 162 ms
55,072 KB
testcase_20 AC 191 ms
55,432 KB
testcase_21 AC 176 ms
55,460 KB
testcase_22 AC 115 ms
52,420 KB
testcase_23 AC 123 ms
52,636 KB
testcase_24 AC 133 ms
55,524 KB
testcase_25 AC 137 ms
55,308 KB
testcase_26 AC 186 ms
55,588 KB
testcase_27 AC 109 ms
51,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.HashSet;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ");
        int n = Integer.parseInt(line[0]);
        int w = Integer.parseInt(line[1]);
        int a[] = new int[n];
        for(int i = 0; i < n; i++)  a[i] = Integer.parseInt(br.readLine());
        int l = 0, r = 0, sum = 0, ans = 0;
        HashSet<Integer> s = new HashSet<Integer>();
        while(r < n){
            if(sum+a[r] > w){
                sum -= a[l];
                s.remove(a[l++]);
                continue;
            }
            if(s.contains(a[r])){
                while(s.contains(a[r])){
                    sum -= a[l];
                    s.remove(a[l++]);
                }
            }
            sum += a[r];
            s.add(a[r++]);
            ans = Math.max(ans, r-l);
        }
        System.out.println(ans);
    }
}
0