結果

問題 No.1692 Expectations
ユーザー ks2mks2m
提出日時 2021-10-01 21:23:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 2,761 ms
コンパイル使用メモリ 76,876 KB
実行使用メモリ 70,424 KB
最終ジャッジ日時 2024-07-19 10:23:19
合計ジャッジ時間 11,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
42,192 KB
testcase_01 AC 126 ms
41,592 KB
testcase_02 AC 176 ms
42,496 KB
testcase_03 AC 209 ms
44,068 KB
testcase_04 AC 167 ms
42,352 KB
testcase_05 AC 198 ms
43,016 KB
testcase_06 AC 183 ms
43,004 KB
testcase_07 AC 144 ms
42,080 KB
testcase_08 AC 192 ms
42,828 KB
testcase_09 AC 138 ms
41,304 KB
testcase_10 AC 595 ms
53,676 KB
testcase_11 AC 586 ms
53,720 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 335 ms
48,724 KB
testcase_15 AC 805 ms
59,808 KB
testcase_16 AC 335 ms
48,180 KB
testcase_17 AC 614 ms
52,344 KB
testcase_18 AC 417 ms
49,748 KB
testcase_19 AC 846 ms
65,436 KB
testcase_20 AC 672 ms
64,820 KB
testcase_21 AC 721 ms
70,424 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) {
			min = 1;
		}
		System.out.println(max + " " + min);
	}
}
0