結果

問題 No.11 カードマッチ
ユーザー atkrymatkrym
提出日時 2016-11-03 11:12:47
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 835 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 74,208 KB
実行使用メモリ 762,296 KB
最終ジャッジ日時 2024-05-03 21:42:50
合計ジャッジ時間 13,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,924 KB
testcase_01 AC 132 ms
53,784 KB
testcase_02 AC 129 ms
54,152 KB
testcase_03 AC 129 ms
54,088 KB
testcase_04 MLE -
testcase_05 AC 132 ms
54,084 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
65,808 KB
testcase_16 AC 304 ms
190,320 KB
testcase_17 AC 249 ms
112,692 KB
testcase_18 AC 377 ms
250,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int w = sc.nextInt();
        int h = sc.nextInt();
        int n = sc.nextInt();
        boolean[][] b = new boolean[w][h];
        long ret = 0;
        for (int i = 0;i < n;i++) {
            int s = sc.nextInt()-1;
            int k = sc.nextInt()-1;
            
            for (int j = 0;j < h;j++) {
                if (!b[s][j]) {
                    b[s][j] = true;
                    ret++;
                }
            }
            
            for (int j = 0;j < w;j++) {
                if (!b[j][k]) {
                    b[j][k] = true;
                    ret++;
                }
            }
        }
        System.out.println(ret-n);
    }
}
0