結果

問題 No.1692 Expectations
ユーザー O2MTO2MT
提出日時 2021-10-01 21:42:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 120,216 KB
最終ジャッジ日時 2024-07-19 10:52:17
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 44 ms
53,632 KB
testcase_04 AC 44 ms
53,632 KB
testcase_05 AC 42 ms
54,144 KB
testcase_06 AC 41 ms
54,056 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
53,760 KB
testcase_10 WA -
testcase_11 AC 86 ms
102,344 KB
testcase_12 AC 40 ms
53,376 KB
testcase_13 AC 40 ms
53,376 KB
testcase_14 AC 49 ms
67,200 KB
testcase_15 AC 111 ms
114,688 KB
testcase_16 AC 50 ms
67,200 KB
testcase_17 AC 75 ms
91,776 KB
testcase_18 AC 56 ms
72,704 KB
testcase_19 AC 122 ms
106,296 KB
testcase_20 AC 107 ms
120,216 KB
testcase_21 AC 115 ms
109,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N,M = map(int,input().split())
A = list(map(int,input().split()))
C = Counter(A).values()
MAX,MIN = len(C),0

print(MAX,MIN)
0