結果

問題 No.11 カードマッチ
ユーザー ぴろずぴろず
提出日時 2014-12-20 23:16:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 75,356 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-10-11 19:14:08
合計ジャッジ時間 5,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,276 KB
testcase_01 AC 128 ms
41,284 KB
testcase_02 AC 125 ms
41,360 KB
testcase_03 AC 126 ms
41,196 KB
testcase_04 AC 137 ms
41,552 KB
testcase_05 AC 111 ms
39,792 KB
testcase_06 AC 140 ms
41,336 KB
testcase_07 AC 141 ms
41,528 KB
testcase_08 AC 138 ms
41,328 KB
testcase_09 AC 140 ms
41,580 KB
testcase_10 AC 139 ms
41,792 KB
testcase_11 AC 138 ms
41,196 KB
testcase_12 AC 139 ms
41,540 KB
testcase_13 AC 132 ms
41,056 KB
testcase_14 AC 138 ms
41,724 KB
testcase_15 AC 144 ms
41,660 KB
testcase_16 AC 142 ms
41,156 KB
testcase_17 AC 140 ms
41,424 KB
testcase_18 AC 139 ms
41,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no011;

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

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();
		HashSet<Integer> S = new HashSet<>();
		HashSet<Integer> K = new HashSet<>();
		for(int i=0;i<n;i++) {
			int s = sc.nextInt();
			int k = sc.nextInt();
			S.add(s);
			K.add(k);
		}
		System.out.println((long) S.size() * h + (long) K.size() * w - n - (long) S.size() * K.size());
	}

}
0