結果

問題 No.1692 Expectations
ユーザー ysys
提出日時 2021-12-24 23:19:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 166,148 KB
最終ジャッジ日時 2024-09-19 22:32:52
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,052 KB
testcase_01 AC 33 ms
52,876 KB
testcase_02 AC 32 ms
52,200 KB
testcase_03 AC 34 ms
53,160 KB
testcase_04 AC 35 ms
52,212 KB
testcase_05 AC 34 ms
53,648 KB
testcase_06 AC 35 ms
53,476 KB
testcase_07 AC 33 ms
52,880 KB
testcase_08 AC 36 ms
52,348 KB
testcase_09 AC 37 ms
53,224 KB
testcase_10 AC 71 ms
97,572 KB
testcase_11 AC 71 ms
96,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 42 ms
68,460 KB
testcase_15 AC 100 ms
130,208 KB
testcase_16 AC 43 ms
67,948 KB
testcase_17 AC 78 ms
99,104 KB
testcase_18 AC 48 ms
74,620 KB
testcase_19 AC 108 ms
140,228 KB
testcase_20 AC 103 ms
150,292 KB
testcase_21 AC 118 ms
166,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
ma = len(set(A))
mi = 0
if len(set(A)) == 1:
  mi += 1
print(ma, mi)
0