結果

問題 No.11 カードマッチ
ユーザー kou6839kou6839
提出日時 2014-11-11 13:35:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 75,656 KB
実行使用メモリ 41,932 KB
最終ジャッジ日時 2024-10-11 19:11:09
合計ジャッジ時間 5,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,328 KB
testcase_01 AC 133 ms
41,516 KB
testcase_02 AC 121 ms
40,232 KB
testcase_03 AC 134 ms
41,108 KB
testcase_04 AC 150 ms
41,368 KB
testcase_05 AC 136 ms
41,328 KB
testcase_06 AC 153 ms
41,336 KB
testcase_07 AC 153 ms
41,860 KB
testcase_08 AC 150 ms
41,872 KB
testcase_09 AC 152 ms
41,932 KB
testcase_10 AC 141 ms
41,640 KB
testcase_11 AC 150 ms
41,484 KB
testcase_12 AC 152 ms
41,804 KB
testcase_13 AC 147 ms
41,376 KB
testcase_14 AC 147 ms
41,708 KB
testcase_15 AC 152 ms
41,660 KB
testcase_16 AC 153 ms
41,648 KB
testcase_17 AC 153 ms
41,836 KB
testcase_18 AC 151 ms
41,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	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> a = new HashSet<>();
		Set<Integer> b = new HashSet<>();
		for(int i=0;i<N;i++){
			a.add(sc.nextInt());
			b.add(sc.nextInt());
		}
		System.out.println(a.size()*H+b.size()*W-a.size()*b.size()-N);
		
	}
}	
0