結果

問題 No.11 カードマッチ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-24 12:27:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 704 bytes
コンパイル時間 4,038 ms
コンパイル使用メモリ 75,388 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-06-01 08:44:21
合計ジャッジ時間 7,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,228 KB
testcase_01 AC 136 ms
54,136 KB
testcase_02 AC 135 ms
54,124 KB
testcase_03 AC 136 ms
54,036 KB
testcase_04 AC 148 ms
54,344 KB
testcase_05 AC 134 ms
53,928 KB
testcase_06 AC 151 ms
54,284 KB
testcase_07 AC 151 ms
54,180 KB
testcase_08 AC 151 ms
53,904 KB
testcase_09 AC 150 ms
53,992 KB
testcase_10 AC 146 ms
54,132 KB
testcase_11 AC 150 ms
54,332 KB
testcase_12 AC 155 ms
54,192 KB
testcase_13 AC 150 ms
54,116 KB
testcase_14 AC 148 ms
54,424 KB
testcase_15 AC 152 ms
53,940 KB
testcase_16 AC 155 ms
54,476 KB
testcase_17 AC 156 ms
54,080 KB
testcase_18 AC 154 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Mian {

    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        
        Set<Integer> c1 = new HashSet<>();
        Set<Integer> c2 = new HashSet<>();
        
        int w = stdin.nextInt();
        int h = stdin.nextInt();
        int n = stdin.nextInt();
        for (int time = 0; time < n; time++) {
            int s = stdin.nextInt();
            int k = stdin.nextInt();
            c1.add(s);
            c2.add(k);
        }
        
        int ans = (c1.size() * h) + (c2.size() * w) - (c1.size() * c2.size()) - n;
        System.out.println(ans);
    }

}
0