結果

問題 No.1390 Get together
ユーザー tentententen
提出日時 2021-02-13 16:36:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 675 bytes
コンパイル時間 2,599 ms
コンパイル使用メモリ 77,048 KB
実行使用メモリ 111,116 KB
最終ジャッジ日時 2024-07-20 19:40:40
合計ジャッジ時間 37,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,132 KB
testcase_01 AC 143 ms
41,188 KB
testcase_02 AC 143 ms
41,020 KB
testcase_03 AC 277 ms
46,820 KB
testcase_04 AC 257 ms
45,856 KB
testcase_05 WA -
testcase_06 AC 260 ms
46,348 KB
testcase_07 WA -
testcase_08 AC 259 ms
45,780 KB
testcase_09 AC 269 ms
46,892 KB
testcase_10 AC 134 ms
40,860 KB
testcase_11 AC 141 ms
41,080 KB
testcase_12 AC 140 ms
41,252 KB
testcase_13 WA -
testcase_14 AC 138 ms
41,524 KB
testcase_15 AC 146 ms
41,428 KB
testcase_16 AC 1,490 ms
65,908 KB
testcase_17 AC 1,816 ms
106,892 KB
testcase_18 AC 1,524 ms
73,504 KB
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,854 ms
110,104 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,827 ms
109,964 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        HashMap<Integer, HashSet<Integer>> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int b = sc.nextInt();
            int c = sc.nextInt();
            if (!counts.containsKey(c)) {
                counts.put(c, new HashSet<>());
            }
            counts.get(c).add(b);
        }
        int ans = 0;
        for (HashSet<Integer> set : counts.values()) {
            ans += set.size() - 1;
        }
        System.out.println(ans);
    }
}
0