結果
問題 | No.1692 Expectations |
ユーザー | みーすけ |
提出日時 | 2021-10-01 21:37:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,064 bytes |
コンパイル時間 | 3,592 ms |
コンパイル使用メモリ | 86,892 KB |
実行使用メモリ | 68,908 KB |
最終ジャッジ日時 | 2024-07-19 10:45:35 |
合計ジャッジ時間 | 11,470 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
42,216 KB |
testcase_01 | AC | 132 ms
41,628 KB |
testcase_02 | AC | 164 ms
41,800 KB |
testcase_03 | AC | 179 ms
42,660 KB |
testcase_04 | AC | 159 ms
41,896 KB |
testcase_05 | AC | 179 ms
43,028 KB |
testcase_06 | AC | 186 ms
44,352 KB |
testcase_07 | AC | 135 ms
42,032 KB |
testcase_08 | AC | 179 ms
43,248 KB |
testcase_09 | AC | 150 ms
42,232 KB |
testcase_10 | AC | 666 ms
55,064 KB |
testcase_11 | AC | 637 ms
55,176 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 336 ms
48,932 KB |
testcase_15 | AC | 786 ms
61,048 KB |
testcase_16 | AC | 322 ms
48,544 KB |
testcase_17 | AC | 568 ms
50,964 KB |
testcase_18 | AC | 460 ms
48,264 KB |
testcase_19 | AC | 769 ms
63,840 KB |
testcase_20 | AC | 640 ms
63,652 KB |
testcase_21 | AC | 687 ms
68,908 KB |
ソースコード
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; if(1<=a[0] && a[0]<=m){ 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); } }