結果

問題 No.11 カードマッチ
ユーザー htensaihtensai
提出日時 2019-12-30 17:15:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 2,818 ms
コンパイル使用メモリ 75,176 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-11-08 20:03:06
合計ジャッジ時間 6,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,248 KB
testcase_01 AC 130 ms
41,092 KB
testcase_02 AC 133 ms
41,268 KB
testcase_03 AC 129 ms
41,220 KB
testcase_04 AC 146 ms
41,636 KB
testcase_05 AC 136 ms
41,436 KB
testcase_06 AC 145 ms
41,396 KB
testcase_07 AC 154 ms
41,436 KB
testcase_08 AC 153 ms
41,684 KB
testcase_09 AC 149 ms
41,368 KB
testcase_10 AC 142 ms
41,452 KB
testcase_11 AC 147 ms
41,516 KB
testcase_12 AC 147 ms
41,636 KB
testcase_13 AC 141 ms
41,500 KB
testcase_14 AC 148 ms
41,560 KB
testcase_15 AC 151 ms
41,784 KB
testcase_16 AC 153 ms
41,432 KB
testcase_17 AC 153 ms
41,684 KB
testcase_18 AC 154 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long w = sc.nextInt();
        long h = sc.nextInt();
        int n = sc.nextInt();
        HashSet<Integer> suits = new HashSet<>();
        HashSet<Integer> numbers = new HashSet<>();
        for (int i = 0; i < n; i++) {
            suits.add(sc.nextInt());
            numbers.add(sc.nextInt());
        }
        long wCount = suits.size();
        long hCount = numbers.size();
        long ans = wCount * h + hCount * w - wCount * hCount - n;
        System.out.println(ans);
    }
}
0