結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー yuki2006yuki2006
提出日時 2015-02-28 03:32:32
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,008 bytes
コンパイル時間 3,442 ms
コンパイル使用メモリ 74,796 KB
実行使用メモリ 76,056 KB
最終ジャッジ日時 2024-06-12 22:23:06
合計ジャッジ時間 22,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
56,912 KB
testcase_01 AC 129 ms
56,712 KB
testcase_02 AC 125 ms
56,396 KB
testcase_03 AC 128 ms
56,544 KB
testcase_04 AC 131 ms
56,440 KB
testcase_05 AC 131 ms
56,520 KB
testcase_06 AC 128 ms
53,896 KB
testcase_07 AC 130 ms
56,768 KB
testcase_08 AC 134 ms
56,388 KB
testcase_09 AC 134 ms
56,528 KB
testcase_10 AC 129 ms
53,968 KB
testcase_11 AC 126 ms
56,736 KB
testcase_12 AC 127 ms
56,456 KB
testcase_13 AC 128 ms
56,496 KB
testcase_14 AC 129 ms
56,740 KB
testcase_15 AC 3,713 ms
69,004 KB
testcase_16 AC 3,127 ms
59,308 KB
testcase_17 AC 3,445 ms
59,148 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki3009_A {


    public Yuki3009_A() {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int[] data = new int[N];
        for (int i = 0; i < N; i++) {
            data[i] = scanner.nextInt();
        }
        int max = 0;
        //貪欲解
        for (int L = 0; L < data.length; L++) {
            boolean[] checked = new boolean[1000000 + 1];
            boolean allOK = true;
            for (int R = L; R < data.length; R++) {
                int c = data[R];
                if (checked[c]) {
                    max = Math.max(max, R - L);
                    allOK = false;
                    break;
                }
                checked[c] = true;
            }
            if (allOK) {
                max = Math.max(max, data.length - L);
            }

        }

        System.out.println(max);
    }

    public static void main(String[] args) {
        Yuki3009_A hoge = new Yuki3009_A();
    }
}

0