結果

問題 No.11 カードマッチ
ユーザー Flere0114Flere0114
提出日時 2016-02-24 15:55:45
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 947 bytes
コンパイル時間 3,552 ms
コンパイル使用メモリ 77,680 KB
実行使用メモリ 762,548 KB
最終ジャッジ日時 2024-09-22 13:20:35
合計ジャッジ時間 14,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,108 KB
testcase_01 AC 131 ms
54,176 KB
testcase_02 AC 117 ms
53,056 KB
testcase_03 AC 129 ms
54,200 KB
testcase_04 MLE -
testcase_05 AC 139 ms
54,436 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 184 ms
66,024 KB
testcase_16 AC 290 ms
192,440 KB
testcase_17 AC 229 ms
113,100 KB
testcase_18 AC 350 ms
251,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No11 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int w, h, n;
        long ans = 0;
        w = sc.nextInt();
        h = sc.nextInt();
        n = sc.nextInt();
        int[] s = new int[n], k = new int[n];
        boolean[][] po = new boolean[w][h];

        for (int i = 0; i < n; i++) {
            s[i] = sc.nextInt() - 1;
            k[i] = sc.nextInt() - 1;
            po[s[i]][k[i]] = true;
        }

        for (int i = 0; i < n; i++) {
            for (int j = 0; j < h; j++) {
                if(!po[s[i]][j]){
                    ans++;
                    po[s[i]][j] = true;
                }
            }
            for (int j = 0; j < w; j++) {
                if(!po[j][k[i]]){
                    ans++;
                    po[j][k[i]] = true;
                }
            }
        }

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