結果

問題 No.697 池の数はいくつか
ユーザー tentententen
提出日時 2020-09-03 13:00:21
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,157 bytes
コンパイル時間 2,892 ms
コンパイル使用メモリ 76,944 KB
実行使用メモリ 811,196 KB
最終ジャッジ日時 2024-11-25 16:33:09
合計ジャッジ時間 17,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,272 KB
testcase_01 AC 111 ms
52,928 KB
testcase_02 AC 122 ms
54,012 KB
testcase_03 AC 112 ms
52,752 KB
testcase_04 AC 125 ms
53,924 KB
testcase_05 AC 115 ms
53,620 KB
testcase_06 AC 127 ms
54,088 KB
testcase_07 AC 132 ms
53,872 KB
testcase_08 AC 126 ms
54,152 KB
testcase_09 AC 124 ms
54,116 KB
testcase_10 AC 129 ms
54,336 KB
testcase_11 AC 124 ms
54,004 KB
testcase_12 AC 122 ms
54,324 KB
testcase_13 AC 123 ms
54,380 KB
testcase_14 AC 118 ms
52,896 KB
testcase_15 AC 109 ms
53,036 KB
testcase_16 AC 120 ms
54,016 KB
testcase_17 AC 124 ms
54,092 KB
testcase_18 AC 129 ms
54,268 KB
testcase_19 AC 118 ms
53,840 KB
testcase_20 AC 120 ms
54,468 KB
testcase_21 AC 125 ms
54,152 KB
testcase_22 AC 123 ms
54,200 KB
testcase_23 AC 112 ms
52,636 KB
testcase_24 AC 363 ms
58,648 KB
testcase_25 AC 367 ms
58,656 KB
testcase_26 AC 375 ms
58,520 KB
testcase_27 AC 373 ms
58,088 KB
testcase_28 AC 375 ms
59,444 KB
testcase_29 MLE -
testcase_30 AC 1,186 ms
69,916 KB
testcase_31 MLE -
testcase_32 AC 1,076 ms
69,664 KB
testcase_33 AC 971 ms
69,800 KB
testcase_34 AC 949 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int h = sc.nextInt();
    	int w = sc.nextInt();
    	sc.nextLine();
    	boolean[][] field = new boolean[h + 2][w + 2];
    	for (int i = 1; i <= h; i++) {
    	    char[] arr = sc.nextLine().toCharArray();
    	    for (int j = 1; j <= w; j++) {
    	        field[i][j] = (arr[(j - 1) * 2] == '1');
    	    }
    	}
    	int count = 0;
    	for (int i = 1; i <= h; i++) {
    	    for (int j = 1; j <= w; j++) {
    	        if (field[i][j]) {
    	            count++;
    	            setUse(i, j, field);
    	        }
    	    }
    	}
    	System.out.println(count);
	}
	
	static void setUse(int r, int c, boolean[][] field) {
	    if (field[r][c]) {
	        field[r][c] = false;
	        if (field[r - 1][c]) {
	            setUse(r - 1, c, field);
	        }
	        if (field[r + 1][c]) {
	            setUse(r + 1, c, field);
	        }
	        if (field[r][c - 1]) {
	            setUse(r, c - 1, field);
	        }
	        if (field[r][c + 1]) {
	            setUse(r, c + 1, field);
	        }
	    }
	}
}
0