結果

問題 No.11 カードマッチ
ユーザー jp_stejp_ste
提出日時 2016-03-02 13:52:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 75,768 KB
実行使用メモリ 41,976 KB
最終ジャッジ日時 2024-10-11 20:02:42
合計ジャッジ時間 5,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,424 KB
testcase_01 AC 134 ms
41,456 KB
testcase_02 AC 136 ms
41,168 KB
testcase_03 AC 134 ms
41,092 KB
testcase_04 AC 148 ms
41,608 KB
testcase_05 AC 134 ms
41,196 KB
testcase_06 AC 149 ms
41,624 KB
testcase_07 AC 151 ms
41,796 KB
testcase_08 AC 155 ms
41,740 KB
testcase_09 AC 151 ms
41,352 KB
testcase_10 AC 149 ms
41,400 KB
testcase_11 AC 150 ms
41,720 KB
testcase_12 AC 149 ms
41,156 KB
testcase_13 AC 149 ms
41,536 KB
testcase_14 AC 149 ms
41,976 KB
testcase_15 AC 150 ms
41,544 KB
testcase_16 AC 154 ms
41,660 KB
testcase_17 AC 161 ms
41,820 KB
testcase_18 AC 150 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int W = scan.nextInt();
            int H = scan.nextInt();
            int N = scan.nextInt();
            HashSet<Integer> wList = new HashSet<>();
            HashSet<Integer> hList = new HashSet<>();
            for(int i=0; i<N; i++) {
                wList.add(scan.nextInt());
                hList.add(scan.nextInt());
            }
            int w = wList.size();
            int h = hList.size();
            int ans = w*H + h*W - w*h - N;
            System.out.println(ans);
        }
    }
}
0