結果

問題 No.1390 Get together
ユーザー ntudantuda
提出日時 2024-09-17 21:41:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 149,180 KB
最終ジャッジ日時 2024-09-17 21:41:47
合計ジャッジ時間 7,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,936 KB
testcase_01 AC 39 ms
54,084 KB
testcase_02 AC 40 ms
54,580 KB
testcase_03 AC 91 ms
77,500 KB
testcase_04 AC 98 ms
77,536 KB
testcase_05 WA -
testcase_06 AC 94 ms
77,580 KB
testcase_07 WA -
testcase_08 AC 91 ms
77,776 KB
testcase_09 AC 94 ms
77,728 KB
testcase_10 AC 35 ms
54,872 KB
testcase_11 AC 34 ms
53,992 KB
testcase_12 AC 36 ms
54,004 KB
testcase_13 WA -
testcase_14 AC 37 ms
54,504 KB
testcase_15 AC 36 ms
54,692 KB
testcase_16 WA -
testcase_17 AC 329 ms
119,636 KB
testcase_18 AC 259 ms
149,180 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 353 ms
119,724 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 335 ms
119,720 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, Counter
dic = defaultdict(list)
N, M = map(int, input().split())
BC = [list(map(int, input().split())) for _ in range(N)]
for b, c in BC:
    dic[c].append(b)
ans = 0
for k, v in dic.items():
    n = len(v)
    L = list(Counter(v).items())
    L.sort(key = lambda x:-x[1])
    ans += n - L[0][1]
print(ans)
0