結果

問題 No.11 カードマッチ
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-03 17:36:35
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,292 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 78,236 KB
実行使用メモリ 37,116 KB
最終ジャッジ日時 2024-10-11 19:53:49
合計ジャッジ時間 3,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,864 KB
testcase_01 AC 50 ms
36,700 KB
testcase_02 AC 49 ms
36,376 KB
testcase_03 AC 50 ms
37,024 KB
testcase_04 AC 51 ms
36,988 KB
testcase_05 AC 48 ms
36,596 KB
testcase_06 AC 51 ms
36,940 KB
testcase_07 AC 52 ms
36,712 KB
testcase_08 AC 52 ms
36,920 KB
testcase_09 AC 53 ms
36,772 KB
testcase_10 AC 50 ms
36,956 KB
testcase_11 AC 53 ms
36,776 KB
testcase_12 AC 51 ms
36,608 KB
testcase_13 AC 51 ms
36,884 KB
testcase_14 AC 53 ms
36,896 KB
testcase_15 AC 52 ms
36,660 KB
testcase_16 AC 52 ms
36,436 KB
testcase_17 AC 53 ms
37,116 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int w = Integer.parseInt(br.readLine());
        int h = Integer.parseInt(br.readLine());
        int n = Integer.parseInt(br.readLine());

        TreeMap<Integer, Integer> s = new TreeMap();
        TreeMap<Integer, Integer> k = new TreeMap();

        long count = 0;
        for (int i = 0; i < n; i++) {
            long tmpCount = 0;
            String[] tmp = br.readLine().split(" ");
            int[] tmpSk = new int[]{Integer.parseInt(tmp[0]),
                Integer.parseInt(tmp[1])};

            if (!s.containsKey(tmpSk[0]) && !k.containsKey(tmpSk[1])) {
                tmpCount = w + h - 2 - s.size() - k.size();
                s.put(tmpSk[0], 0);
                k.put(tmpSk[1], 0);
            } else if (s.containsKey(tmpSk[0])) {
                tmpCount = w - 2 - (s.size() - 1);
                k.put(tmpSk[1], 0);
            } else if (k.containsKey(tmpSk[1])) {
                tmpCount = h - 2 - (k.size() - 1);
                s.put(tmpSk[0], 0);
            }

            count += tmpCount;
        }

        System.out.println(count);
    }
}
0