結果

問題 No.11 カードマッチ
ユーザー GrenacheGrenache
提出日時 2015-11-03 14:09:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 687 bytes
コンパイル時間 3,800 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-10-11 19:56:41
合計ジャッジ時間 6,978 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,052 KB
testcase_01 AC 131 ms
40,932 KB
testcase_02 AC 117 ms
39,664 KB
testcase_03 AC 129 ms
41,216 KB
testcase_04 AC 146 ms
41,360 KB
testcase_05 AC 131 ms
41,140 KB
testcase_06 AC 144 ms
41,248 KB
testcase_07 AC 156 ms
41,420 KB
testcase_08 AC 154 ms
41,532 KB
testcase_09 AC 147 ms
41,288 KB
testcase_10 AC 140 ms
41,492 KB
testcase_11 AC 144 ms
41,284 KB
testcase_12 AC 145 ms
41,236 KB
testcase_13 AC 140 ms
41,156 KB
testcase_14 AC 142 ms
41,356 KB
testcase_15 AC 147 ms
41,480 KB
testcase_16 AC 146 ms
41,616 KB
testcase_17 AC 163 ms
41,544 KB
testcase_18 AC 146 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder11 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int w = sc.nextInt();
        int h = sc.nextInt();
        int n = sc.nextInt();

        Set<Integer> hsw = new HashSet<Integer>();
        Set<Integer> hsh = new HashSet<Integer>();

        for (int i = 0; i < n; i++) {
        	int s = sc.nextInt();
        	int k = sc.nextInt();
        	hsw.add(s);
        	hsh.add(k);
        }

        System.out.println((long)hsw.size() * h + hsh.size() * w - (long)hsw.size() * hsh.size() - n);
        
        sc.close();
    }
}
0