結果

問題 No.1692 Expectations
ユーザー yosakayosaka
提出日時 2022-01-19 20:20:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 34,200 KB
最終ジャッジ日時 2023-08-15 08:06:13
合計ジャッジ時間 3,485 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,808 KB
testcase_01 AC 15 ms
7,912 KB
testcase_02 AC 15 ms
7,856 KB
testcase_03 AC 15 ms
7,812 KB
testcase_04 AC 16 ms
7,944 KB
testcase_05 AC 16 ms
7,980 KB
testcase_06 AC 15 ms
7,812 KB
testcase_07 AC 15 ms
7,896 KB
testcase_08 AC 16 ms
7,932 KB
testcase_09 AC 15 ms
7,952 KB
testcase_10 AC 76 ms
27,032 KB
testcase_11 AC 79 ms
29,332 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 23 ms
10,664 KB
testcase_15 AC 99 ms
26,264 KB
testcase_16 AC 23 ms
10,552 KB
testcase_17 AC 54 ms
17,228 KB
testcase_18 AC 33 ms
14,144 KB
testcase_19 AC 115 ms
29,996 KB
testcase_20 AC 86 ms
33,140 KB
testcase_21 AC 95 ms
34,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
vmax = len(set(A))
vmin = 0 if len(set(A)) > 1 else 1
print(vmax, vmin)
0