結果

問題 No.697 池の数はいくつか
ユーザー tentententen
提出日時 2020-09-03 11:51:37
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,019 bytes
コンパイル時間 2,412 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 821,948 KB
最終ジャッジ日時 2024-11-25 16:28:50
合計ジャッジ時間 43,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,520 KB
testcase_01 AC 116 ms
54,008 KB
testcase_02 AC 117 ms
53,616 KB
testcase_03 AC 119 ms
53,760 KB
testcase_04 AC 120 ms
53,860 KB
testcase_05 AC 113 ms
53,540 KB
testcase_06 AC 109 ms
52,940 KB
testcase_07 AC 109 ms
52,984 KB
testcase_08 AC 106 ms
52,732 KB
testcase_09 AC 108 ms
52,796 KB
testcase_10 AC 113 ms
54,144 KB
testcase_11 AC 115 ms
54,060 KB
testcase_12 AC 106 ms
52,712 KB
testcase_13 AC 127 ms
54,200 KB
testcase_14 AC 109 ms
52,652 KB
testcase_15 AC 121 ms
53,856 KB
testcase_16 AC 107 ms
52,764 KB
testcase_17 AC 115 ms
52,920 KB
testcase_18 AC 118 ms
53,588 KB
testcase_19 AC 118 ms
53,940 KB
testcase_20 AC 111 ms
52,832 KB
testcase_21 AC 118 ms
54,028 KB
testcase_22 AC 119 ms
53,848 KB
testcase_23 AC 122 ms
54,248 KB
testcase_24 AC 1,125 ms
71,372 KB
testcase_25 AC 1,126 ms
69,256 KB
testcase_26 AC 1,121 ms
69,428 KB
testcase_27 AC 1,117 ms
69,572 KB
testcase_28 AC 1,151 ms
69,216 KB
testcase_29 MLE -
testcase_30 AC 4,534 ms
85,972 KB
testcase_31 MLE -
testcase_32 AC 4,619 ms
85,876 KB
testcase_33 AC 4,318 ms
85,788 KB
testcase_34 AC 4,383 ms
85,616 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();
    	boolean[][] field = new boolean[h + 2][w + 2];
    	for (int i = 1; i <= h; i++) {
    	    for (int j = 1; j <= w; j++) {
    	        field[i][j] = (sc.nextInt() == 1);
    	    }
    	}
    	boolean[][] used = new boolean[h + 2][w + 2];
    	int count = 0;
    	for (int i = 1; i <= h; i++) {
    	    for (int j = 1; j <= w; j++) {
    	        if (field[i][j] && !used[i][j]) {
    	            count++;
    	            setUse(i, j, field, used);
    	        }
    	    }
    	}
    	System.out.println(count);
	}
	
	static void setUse(int r, int c, boolean[][] field, boolean[][] used) {
	    if (field[r][c] && !used[r][c]) {
	        used[r][c] = true;
	        setUse(r - 1, c, field, used);
	        setUse(r + 1, c, field, used);
	        setUse(r, c - 1, field, used);
	        setUse(r, c + 1, field, used);
	    }
	}
}
0