結果

問題 No.1390 Get together
ユーザー NoneNone
提出日時 2021-05-04 23:28:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 708 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 127,176 KB
最終ジャッジ日時 2024-07-23 18:30:07
合計ジャッジ時間 10,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,200 KB
testcase_01 AC 41 ms
53,484 KB
testcase_02 AC 41 ms
55,036 KB
testcase_03 AC 91 ms
77,580 KB
testcase_04 AC 84 ms
77,564 KB
testcase_05 WA -
testcase_06 AC 84 ms
77,784 KB
testcase_07 WA -
testcase_08 AC 87 ms
77,440 KB
testcase_09 AC 91 ms
77,420 KB
testcase_10 AC 41 ms
53,544 KB
testcase_11 AC 42 ms
54,836 KB
testcase_12 AC 42 ms
54,416 KB
testcase_13 WA -
testcase_14 AC 41 ms
54,096 KB
testcase_15 AC 41 ms
55,460 KB
testcase_16 WA -
testcase_17 AC 370 ms
127,076 KB
testcase_18 AC 229 ms
94,932 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 378 ms
126,960 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 381 ms
126,796 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,M=map(int, input().split())
C=defaultdict(lambda: defaultdict(int))
for _ in range(N):
    b,c=map(int, input().split())
    C[c][b]+=1

res=0
for _,d in C.items():
    m=0
    s=0
    for k,v in d.items():
        m=max(v,m)
        s+=v
    res+=s-m
print(res)
0