結果

問題 No.697 池の数はいくつか
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-23 02:05:26
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 792 bytes
コンパイル時間 5,202 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 832,392 KB
最終ジャッジ日時 2024-11-25 13:46:46
合計ジャッジ時間 42,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,060 KB
testcase_01 AC 123 ms
53,860 KB
testcase_02 AC 119 ms
53,984 KB
testcase_03 AC 102 ms
52,608 KB
testcase_04 AC 120 ms
53,688 KB
testcase_05 AC 112 ms
54,080 KB
testcase_06 AC 106 ms
52,668 KB
testcase_07 AC 116 ms
54,064 KB
testcase_08 AC 112 ms
53,920 KB
testcase_09 AC 102 ms
52,904 KB
testcase_10 AC 119 ms
54,140 KB
testcase_11 AC 115 ms
53,836 KB
testcase_12 AC 98 ms
52,668 KB
testcase_13 AC 113 ms
53,728 KB
testcase_14 AC 104 ms
52,836 KB
testcase_15 AC 122 ms
53,784 KB
testcase_16 AC 110 ms
53,608 KB
testcase_17 AC 107 ms
52,656 KB
testcase_18 AC 117 ms
53,808 KB
testcase_19 AC 118 ms
53,724 KB
testcase_20 AC 123 ms
54,088 KB
testcase_21 AC 121 ms
53,824 KB
testcase_22 AC 113 ms
53,952 KB
testcase_23 AC 122 ms
53,884 KB
testcase_24 AC 1,155 ms
73,268 KB
testcase_25 AC 1,102 ms
73,480 KB
testcase_26 AC 1,067 ms
73,636 KB
testcase_27 AC 1,094 ms
73,196 KB
testcase_28 AC 1,095 ms
73,572 KB
testcase_29 MLE -
testcase_30 AC 4,391 ms
122,328 KB
testcase_31 MLE -
testcase_32 AC 4,268 ms
122,644 KB
testcase_33 AC 4,284 ms
121,912 KB
testcase_34 AC 4,211 ms
122,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No697{

	static int H, W;
	static int[][] a;
	static int[] dx = {0, 1, 0, -1};
	static int[] dy = {-1, 0, 1, 0};
		
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		H = sc.nextInt();
		W = sc.nextInt();

		a = new int[H][W];
		for(int h = 0; h < H; h++){
			for(int w = 0; w < W; w++){
				a[h][w] = sc.nextInt();
			}
		}

		int ans = 0;
		for(int h = 0; h < H; h++){
			for(int w = 0; w < W; w++){
				if(a[h][w] == 1){
					search(h, w);
					ans++;
				}
			}
		}
		System.out.println(ans);
	}
	private static void search(int h, int w){
		a[h][w] = 0;
		for(int i = 0; i < 4; i++){
			int x = w+dx[i], y = h+dy[i];
			if(x >= 0 && x < W && y >= 0 && y < H){
				if(a[y][x] == 1){
					search(y, x);
				}
			}
		}
	}
}

0