結果

問題 No.1692 Expectations
ユーザー mesame3993mesame3993
提出日時 2021-10-01 21:22:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 133,376 KB
最終ジャッジ日時 2024-07-19 10:21:41
合計ジャッジ時間 2,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 37 ms
51,584 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 76 ms
96,128 KB
testcase_11 AC 76 ms
95,616 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 45 ms
63,616 KB
testcase_15 AC 94 ms
112,128 KB
testcase_16 AC 46 ms
63,744 KB
testcase_17 AC 70 ms
86,784 KB
testcase_18 AC 52 ms
68,864 KB
testcase_19 AC 103 ms
120,192 KB
testcase_20 AC 97 ms
122,368 KB
testcase_21 AC 105 ms
133,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))

st = set(a)
ansMax = len(st)
if len(st) == 1:
	ansMin = 1
else:
	ansMin = 0
print(ansMax, ansMin)
0