結果

問題 No.11 カードマッチ
ユーザー nCk_cvnCk_cv
提出日時 2016-07-01 21:05:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 76,660 KB
実行使用メモリ 58,868 KB
最終ジャッジ日時 2024-10-12 00:06:21
合計ジャッジ時間 6,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,272 KB
testcase_01 WA -
testcase_02 AC 128 ms
41,028 KB
testcase_03 AC 115 ms
40,244 KB
testcase_04 AC 149 ms
44,572 KB
testcase_05 AC 127 ms
41,176 KB
testcase_06 AC 158 ms
49,072 KB
testcase_07 AC 148 ms
44,112 KB
testcase_08 WA -
testcase_09 AC 156 ms
49,240 KB
testcase_10 AC 156 ms
47,940 KB
testcase_11 AC 155 ms
47,284 KB
testcase_12 AC 153 ms
47,368 KB
testcase_13 AC 157 ms
46,832 KB
testcase_14 AC 155 ms
46,480 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.*;
import java.util.*;


public class Main {
	static int[] vy = {1,0,-1,0};
	static int[] vx = {0,1,0,-1};
	public static void main(String[] args) {	
		Scanner sc = new Scanner(System.in);
		PrintWriter out = new PrintWriter(System.out);
		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();
		}
		int[] s = new int[W+1];
		int[] k = new int[H+1];
		for(int i = 0; i < N; i++) {
			s[S[i]]++;
			k[K[i]]++;
		}
		long sum = 0;
		int uniq = 0;
		for(int i = 0; i <= W; i++) {
			if(s[i] != 0) {
				sum += H;
				sum--;
				uniq++;
			}
			
		}
		for(int i = 0; i <= H; i++) {
			if(k[i] != 0) {
				sum += W - uniq;
			}
		}
		System.out.println(sum);
		
		
	}
}
0