結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー tentententen
提出日時 2021-02-12 12:08:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 625 ms / 5,000 ms
コード長 733 bytes
コンパイル時間 2,799 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 55,132 KB
最終ジャッジ日時 2024-11-20 15:03:00
合計ジャッジ時間 10,420 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,444 KB
testcase_01 AC 135 ms
41,316 KB
testcase_02 AC 133 ms
41,388 KB
testcase_03 AC 134 ms
41,268 KB
testcase_04 AC 133 ms
41,452 KB
testcase_05 AC 120 ms
39,844 KB
testcase_06 AC 135 ms
41,284 KB
testcase_07 AC 133 ms
41,164 KB
testcase_08 AC 135 ms
41,148 KB
testcase_09 AC 133 ms
41,136 KB
testcase_10 AC 133 ms
41,312 KB
testcase_11 AC 134 ms
40,968 KB
testcase_12 AC 119 ms
41,224 KB
testcase_13 AC 135 ms
41,392 KB
testcase_14 AC 133 ms
41,268 KB
testcase_15 AC 530 ms
48,312 KB
testcase_16 AC 515 ms
48,512 KB
testcase_17 AC 546 ms
48,828 KB
testcase_18 AC 625 ms
48,468 KB
testcase_19 AC 551 ms
48,600 KB
testcase_20 AC 445 ms
48,136 KB
testcase_21 AC 338 ms
47,532 KB
testcase_22 AC 495 ms
48,192 KB
testcase_23 AC 382 ms
47,988 KB
testcase_24 AC 608 ms
55,132 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[] arr = new int[n];
        HashSet<Integer> exist = new HashSet<>();
        int left = 0;
        int max = 0;
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            if (exist.contains(arr[i])) {
                while (arr[left] != arr[i]) {
                    exist.remove(arr[left]);
                    left++;
                }
                left++;
            } else {
                exist.add(arr[i]);
                max = Math.max(max, i - left + 1);
            }
        }
        System.out.println(max);
    }
}
0