結果

問題 No.11 カードマッチ
ユーザー rn4rurn4ru
提出日時 2016-04-13 02:34:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 583 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-10-11 20:04:18
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,020 KB
testcase_01 AC 131 ms
40,856 KB
testcase_02 AC 131 ms
41,528 KB
testcase_03 AC 130 ms
41,364 KB
testcase_04 AC 143 ms
41,600 KB
testcase_05 AC 116 ms
40,036 KB
testcase_06 AC 147 ms
41,716 KB
testcase_07 AC 147 ms
41,784 KB
testcase_08 AC 147 ms
41,684 KB
testcase_09 AC 150 ms
41,480 KB
testcase_10 AC 143 ms
41,176 KB
testcase_11 AC 145 ms
41,208 KB
testcase_12 AC 149 ms
41,548 KB
testcase_13 AC 147 ms
41,208 KB
testcase_14 AC 146 ms
41,264 KB
testcase_15 AC 147 ms
41,412 KB
testcase_16 AC 151 ms
41,244 KB
testcase_17 AC 150 ms
41,340 KB
testcase_18 AC 150 ms
41,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int W = scanner.nextInt();
		int H = scanner.nextInt();
		int N = scanner.nextInt();
		Set<Integer> Wsum = new HashSet<>();
		Set<Integer> Hsum = new HashSet<>();
		for (int i = 0; i < N; i++) {
			int S = scanner.nextInt();
			int K = scanner.nextInt();
			Wsum.add(S);
			Hsum.add(K);
		}
		System.out.println(W * H - (W - Wsum.size()) * (H - Hsum.size()) - N);
	}

}
0