結果

問題 No.1692 Expectations
ユーザー みーすけみーすけ
提出日時 2021-10-01 21:34:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 982 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 76,904 KB
実行使用メモリ 68,356 KB
最終ジャッジ日時 2024-07-19 10:40:25
合計ジャッジ時間 12,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
42,052 KB
testcase_01 AC 153 ms
42,212 KB
testcase_02 AC 187 ms
42,828 KB
testcase_03 AC 216 ms
44,508 KB
testcase_04 AC 177 ms
42,952 KB
testcase_05 AC 213 ms
44,416 KB
testcase_06 AC 213 ms
42,500 KB
testcase_07 AC 153 ms
42,292 KB
testcase_08 AC 214 ms
42,776 KB
testcase_09 AC 166 ms
42,752 KB
testcase_10 AC 747 ms
57,888 KB
testcase_11 AC 699 ms
57,724 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 369 ms
49,040 KB
testcase_15 AC 863 ms
62,172 KB
testcase_16 AC 356 ms
47,248 KB
testcase_17 AC 650 ms
50,956 KB
testcase_18 AC 494 ms
48,356 KB
testcase_19 AC 918 ms
63,708 KB
testcase_20 AC 738 ms
64,292 KB
testcase_21 AC 803 ms
68,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[] a = new int[n];
        for (int i = 0; i < n; i++) {
            a[i] = sc.nextInt();
        }

        int min = 0;
        boolean allSame = true;
        for (int i = 1; i < n; i++) {
            if (a[i] != a[0]) {
                allSame = false;
                break;
            }
        }
        if (allSame) {
            min = 1;
        }
        
        int max = n;
        HashSet<Integer> hs = new HashSet<Integer>();
        for (int i = 0; i < n; i++) {
            if (1 <= a[i] && a[i] <= m) {
                if (hs.contains(a[i])) {
                    max--;
                } else {
                    hs.add(a[i]);
                }
            } else {
                max--;
            }
        }
        System.out.println(max + " " + min);
    }
}
0