結果

問題 No.1692 Expectations
ユーザー playerplayer
提出日時 2023-12-26 21:51:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 141,336 KB
最終ジャッジ日時 2024-09-27 15:17:02
合計ジャッジ時間 3,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,940 KB
testcase_01 AC 43 ms
54,304 KB
testcase_02 AC 44 ms
54,128 KB
testcase_03 AC 43 ms
55,148 KB
testcase_04 AC 43 ms
55,160 KB
testcase_05 AC 44 ms
55,764 KB
testcase_06 AC 45 ms
54,496 KB
testcase_07 AC 43 ms
54,148 KB
testcase_08 AC 45 ms
55,624 KB
testcase_09 AC 43 ms
54,112 KB
testcase_10 AC 129 ms
115,396 KB
testcase_11 AC 130 ms
115,176 KB
testcase_12 AC 43 ms
54,852 KB
testcase_13 AC 44 ms
54,176 KB
testcase_14 AC 84 ms
93,372 KB
testcase_15 AC 163 ms
109,840 KB
testcase_16 AC 78 ms
88,924 KB
testcase_17 AC 136 ms
107,700 KB
testcase_18 AC 116 ms
115,572 KB
testcase_19 AC 192 ms
128,236 KB
testcase_20 AC 123 ms
107,060 KB
testcase_21 AC 155 ms
141,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

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

d = defaultdict(list)
for i in range(n):
    d[a[i]].append(i)
    
ma = n
mi = 0

for i in range(1,m+1):
    if len(d[i]) >= 2:
        ma -= (len(d[i])-1)

if n == m:
    s = set(a)
    if len(s) == 1:
        mi = 1
    
print(ma,mi)
0