結果

問題 No.11 カードマッチ
ユーザー bambambambam
提出日時 2019-08-22 13:30:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-10-12 08:13:00
合計ジャッジ時間 6,177 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,180 KB
testcase_01 AC 132 ms
53,976 KB
testcase_02 AC 133 ms
54,072 KB
testcase_03 AC 132 ms
53,896 KB
testcase_04 AC 146 ms
54,216 KB
testcase_05 AC 118 ms
52,972 KB
testcase_06 AC 145 ms
54,236 KB
testcase_07 AC 148 ms
54,076 KB
testcase_08 AC 146 ms
54,064 KB
testcase_09 AC 146 ms
53,952 KB
testcase_10 AC 137 ms
53,912 KB
testcase_11 AC 143 ms
53,996 KB
testcase_12 AC 147 ms
54,160 KB
testcase_13 AC 143 ms
54,284 KB
testcase_14 AC 144 ms
54,112 KB
testcase_15 AC 143 ms
54,280 KB
testcase_16 AC 146 ms
54,012 KB
testcase_17 AC 140 ms
54,128 KB
testcase_18 AC 142 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	static boolean memo[];
	static int ans, min;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		long w = sc.nextLong();
		long h = sc.nextLong();
		int n = sc.nextInt();
		HashSet<Integer> hs1 = new HashSet<>();
		HashSet<Integer> hs2 = new HashSet<>();
		int mark, num;
		long sum;
		for (int i = 0; i < n; i++) {
			mark = sc.nextInt();
			num = sc.nextInt();
			hs1.add(mark);
			hs2.add(num);
		}
		sum = hs1.size() * h + (w - hs1.size()) * hs2.size() - n;
		System.out.println(sum);
	}
}
0