結果

問題 No.697 池の数はいくつか
ユーザー htensaihtensai
提出日時 2019-12-19 11:33:44
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,189 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 834,008 KB
最終ジャッジ日時 2024-11-25 15:35:10
合計ジャッジ時間 16,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,180 KB
testcase_01 AC 53 ms
49,892 KB
testcase_02 AC 52 ms
50,280 KB
testcase_03 AC 54 ms
49,896 KB
testcase_04 AC 54 ms
50,312 KB
testcase_05 AC 54 ms
50,220 KB
testcase_06 AC 53 ms
50,272 KB
testcase_07 AC 55 ms
50,156 KB
testcase_08 AC 55 ms
50,132 KB
testcase_09 AC 52 ms
49,636 KB
testcase_10 AC 53 ms
50,148 KB
testcase_11 AC 53 ms
50,344 KB
testcase_12 AC 55 ms
49,776 KB
testcase_13 AC 52 ms
49,924 KB
testcase_14 AC 53 ms
50,356 KB
testcase_15 AC 53 ms
49,932 KB
testcase_16 AC 53 ms
50,120 KB
testcase_17 AC 52 ms
49,904 KB
testcase_18 AC 52 ms
49,764 KB
testcase_19 AC 52 ms
49,804 KB
testcase_20 AC 53 ms
49,996 KB
testcase_21 AC 53 ms
50,368 KB
testcase_22 AC 53 ms
50,192 KB
testcase_23 AC 52 ms
50,252 KB
testcase_24 AC 429 ms
59,032 KB
testcase_25 AC 430 ms
58,444 KB
testcase_26 AC 441 ms
58,608 KB
testcase_27 AC 473 ms
59,576 KB
testcase_28 AC 459 ms
58,864 KB
testcase_29 MLE -
testcase_30 AC 946 ms
68,500 KB
testcase_31 MLE -
testcase_32 AC 972 ms
69,256 KB
testcase_33 AC 897 ms
69,260 KB
testcase_34 AC 928 ms
69,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static boolean[][] field;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int h = Integer.parseInt(first[0]);
        int w = Integer.parseInt(first[1]);
        field = new boolean[h + 2][w + 2];
        for (int i = 1; i <= h; i++) {
            String[] line = br.readLine().split(" ", w);
            for (int j = 1; j <= w; j++) {
                field[i][j] = line[j - 1].charAt(0) == '1';
            }
        }
        int count = 0;
        for (int i = 1; i <= h; i++) {
            for (int j = 1; j <= w; j++) {
                if (field[i][j]) {
                    setCell(i, j);
                    count++;
                }
            }
        }
        System.out.println(count);
    }
    
    static void setCell(int hh, int ww) {
        if (!field[hh][ww]) {
            return;
        }
        field[hh][ww] = false;
        setCell(hh - 1, ww);
        setCell(hh + 1, ww);
        setCell(hh, ww - 1);
        setCell(hh, ww + 1);
    }
}
0