結果

問題 No.1692 Expectations
ユーザー ks2mks2m
提出日時 2021-10-01 21:24:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,046 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 3,858 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 70,400 KB
最終ジャッジ日時 2024-07-19 10:26:17
合計ジャッジ時間 12,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,144 KB
testcase_01 AC 156 ms
42,396 KB
testcase_02 AC 199 ms
42,672 KB
testcase_03 AC 213 ms
44,604 KB
testcase_04 AC 176 ms
42,788 KB
testcase_05 AC 209 ms
42,696 KB
testcase_06 AC 212 ms
44,284 KB
testcase_07 AC 154 ms
42,168 KB
testcase_08 AC 212 ms
44,640 KB
testcase_09 AC 168 ms
42,836 KB
testcase_10 AC 738 ms
53,976 KB
testcase_11 AC 716 ms
53,976 KB
testcase_12 AC 158 ms
42,660 KB
testcase_13 AC 158 ms
42,412 KB
testcase_14 AC 386 ms
49,672 KB
testcase_15 AC 995 ms
60,904 KB
testcase_16 AC 382 ms
49,496 KB
testcase_17 AC 665 ms
52,936 KB
testcase_18 AC 452 ms
50,016 KB
testcase_19 AC 1,046 ms
65,960 KB
testcase_20 AC 779 ms
65,620 KB
testcase_21 AC 827 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		Set<Integer> set = new HashSet<>();
		for (int i = 0; i < n; i++) {
			set.add(sc.nextInt());
		}
		sc.close();

		int max = set.size();
		int min = 0;
		if (set.size() == 1 && n == m) {
			min = 1;
		}
		System.out.println(max + " " + min);
	}
}
0