結果

問題 No.11 カードマッチ
ユーザー scachescache
提出日時 2014-11-12 03:32:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 932 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 43,604 KB
最終ジャッジ日時 2024-10-11 19:11:57
合計ジャッジ時間 5,820 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,936 KB
testcase_01 AC 132 ms
41,436 KB
testcase_02 AC 133 ms
41,032 KB
testcase_03 AC 134 ms
41,344 KB
testcase_04 AC 157 ms
42,580 KB
testcase_05 AC 133 ms
41,152 KB
testcase_06 AC 162 ms
43,604 KB
testcase_07 AC 157 ms
42,032 KB
testcase_08 AC 155 ms
42,384 KB
testcase_09 AC 157 ms
42,984 KB
testcase_10 AC 155 ms
42,976 KB
testcase_11 AC 157 ms
43,084 KB
testcase_12 AC 158 ms
42,808 KB
testcase_13 AC 157 ms
42,780 KB
testcase_14 AC 158 ms
42,152 KB
testcase_15 AC 150 ms
41,160 KB
testcase_16 AC 152 ms
41,516 KB
testcase_17 AC 152 ms
41,820 KB
testcase_18 AC 150 ms
41,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Main p = new Main();
	}

	public Main() {
		Scanner sc = new Scanner(System.in);
		int w = sc.nextInt();
		int h = sc.nextInt();
		int n = sc.nextInt();
		int[] s = new int[n];
		int[] k = new int[n];
		for(int i=0;i<n;i++){
			s[i] = sc.nextInt();
			k[i] = sc.nextInt();
		}
		solve(w, h, s, k);
	}

	public void solve(int W, int H, int[] s, int[] k) {
		boolean[] mark = new boolean[W+1];
		boolean[] number = new boolean[H+1];
		
		for(int i=0;i<s.length;i++){
			mark[s[i]] = true;
			number[k[i]] = true;
		}
		
		long markNum = 0;
		for(int i=0;i<mark.length;i++){
			if(mark[i])
				markNum++;
		}
		long numNum = 0;
		for(int i=0;i<number.length;i++){
			if(number[i])
				numNum++;
		}

		long res = markNum*H+numNum*W-markNum*numNum-s.length;
		
		System.out.println(res);
		
	}

}
0