結果

問題 No.11 カードマッチ
ユーザー rn4rurn4ru
提出日時 2016-04-13 02:18:46
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 935 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 76,756 KB
実行使用メモリ 761,996 KB
最終ジャッジ日時 2024-10-04 06:44:34
合計ジャッジ時間 13,917 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,256 KB
testcase_01 AC 108 ms
39,876 KB
testcase_02 AC 108 ms
40,040 KB
testcase_03 AC 117 ms
41,308 KB
testcase_04 MLE -
testcase_05 AC 111 ms
41,216 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 192 ms
78,088 KB
testcase_16 AC 612 ms
358,412 KB
testcase_17 AC 287 ms
138,184 KB
testcase_18 AC 940 ms
457,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int W = scanner.nextInt();
		int H = scanner.nextInt();
		int N = scanner.nextInt();
		boolean[][] hands = new boolean[W + 1][H + 1];
		boolean[][] covered = new boolean[W + 1][H + 1];
		for (int i = 0; i < N; i++) {
			int S = scanner.nextInt();
			int K = scanner.nextInt();
			hands[S][K] = true;
			covered[S][K] = true;
		}

		long match = 0;
		for (int i = 1; i <= W; i++) {
			boolean found = false;
			for (int j = 1; j <= H; j++) {
				if (hands[i][j]) {
					found = true;
					for (int k = 1; k <= W; k++) {
						if (!covered[k][j]) {
							covered[k][j] = true;
							match++;
						}
					}
				}
			}
			if (!found)
				continue;

			for (int k = 1; k <= H; k++) {
				if (!covered[i][k]) {
					covered[i][k] = true;
					match++;
				}
			}
		}
		System.out.println(match);
	}

}
0