結果

問題 No.1390 Get together
ユーザー hiragnhiragn
提出日時 2022-11-29 15:55:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,844 KB
最終ジャッジ日時 2024-10-07 03:18:35
合計ジャッジ時間 13,164 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 41 ms
11,648 KB
testcase_04 AC 36 ms
11,392 KB
testcase_05 WA -
testcase_06 AC 36 ms
11,392 KB
testcase_07 WA -
testcase_08 AC 36 ms
11,392 KB
testcase_09 AC 40 ms
11,904 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 24 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 577 ms
19,308 KB
testcase_17 AC 707 ms
52,044 KB
testcase_18 AC 558 ms
27,940 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 717 ms
54,844 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 719 ms
54,468 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def main():
    n, m = map(int, input().split())

    d = defaultdict(set)
    for _ in range(n):
        b, c = map(int, input().split())
        d[c].add(b)

    ans = 0
    for k, v in d.items():
        ans += len(v) - 1
    print(ans)


if __name__ == "__main__":
    main()
0