結果

問題 No.11 カードマッチ
ユーザー tentententen
提出日時 2020-11-17 08:30:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 572 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-07-23 01:54:58
合計ジャッジ時間 5,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,124 KB
testcase_01 AC 130 ms
53,940 KB
testcase_02 AC 126 ms
54,092 KB
testcase_03 AC 113 ms
53,060 KB
testcase_04 AC 141 ms
54,168 KB
testcase_05 AC 131 ms
54,156 KB
testcase_06 AC 143 ms
54,048 KB
testcase_07 AC 151 ms
54,436 KB
testcase_08 AC 155 ms
54,228 KB
testcase_09 AC 154 ms
54,132 KB
testcase_10 AC 148 ms
53,932 KB
testcase_11 AC 146 ms
53,908 KB
testcase_12 AC 145 ms
54,252 KB
testcase_13 AC 146 ms
54,216 KB
testcase_14 AC 144 ms
54,028 KB
testcase_15 AC 150 ms
53,988 KB
testcase_16 AC 162 ms
53,964 KB
testcase_17 AC 153 ms
54,104 KB
testcase_18 AC 149 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int w = sc.nextInt();
        int 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 ans = suits.size() * ((long)h - numbers.size()) + numbers.size() * w - n;
        System.out.print(ans);
    }
}
0