結果

問題 No.1390 Get together
ユーザー ntudantuda
提出日時 2024-09-17 21:35:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 144,728 KB
最終ジャッジ日時 2024-09-17 21:36:00
合計ジャッジ時間 8,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,908 KB
testcase_01 AC 37 ms
53,852 KB
testcase_02 AC 36 ms
54,984 KB
testcase_03 AC 85 ms
77,536 KB
testcase_04 AC 72 ms
77,492 KB
testcase_05 WA -
testcase_06 AC 74 ms
77,488 KB
testcase_07 WA -
testcase_08 AC 71 ms
77,636 KB
testcase_09 AC 72 ms
77,360 KB
testcase_10 AC 39 ms
55,116 KB
testcase_11 AC 38 ms
54,384 KB
testcase_12 AC 36 ms
54,896 KB
testcase_13 WA -
testcase_14 AC 36 ms
53,916 KB
testcase_15 AC 37 ms
54,048 KB
testcase_16 AC 212 ms
114,652 KB
testcase_17 AC 295 ms
144,312 KB
testcase_18 AC 217 ms
127,184 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 297 ms
144,156 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 282 ms
144,208 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
dic = defaultdict(set)
N, M = map(int, input().split())
BC = [list(map(int, input().split())) for _ in range(N)]
for b, c in BC:
    dic[c].add(b)
ans = 0
for k, v in dic.items():
    ans += len(v) - 1
print(ans)
0