結果

問題 No.697 池の数はいくつか
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-23 02:13:44
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 779 bytes
コンパイル時間 4,912 ms
コンパイル使用メモリ 77,488 KB
実行使用メモリ 832,860 KB
最終ジャッジ日時 2024-11-25 13:48:33
合計ジャッジ時間 46,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,928 KB
testcase_01 AC 116 ms
54,132 KB
testcase_02 AC 116 ms
53,760 KB
testcase_03 AC 117 ms
53,920 KB
testcase_04 AC 109 ms
52,648 KB
testcase_05 AC 108 ms
52,920 KB
testcase_06 AC 122 ms
54,056 KB
testcase_07 AC 110 ms
53,004 KB
testcase_08 AC 117 ms
53,792 KB
testcase_09 AC 118 ms
53,720 KB
testcase_10 AC 121 ms
54,220 KB
testcase_11 AC 120 ms
54,236 KB
testcase_12 AC 119 ms
53,716 KB
testcase_13 AC 128 ms
53,892 KB
testcase_14 AC 124 ms
53,788 KB
testcase_15 AC 120 ms
54,000 KB
testcase_16 AC 116 ms
54,256 KB
testcase_17 AC 117 ms
53,932 KB
testcase_18 AC 120 ms
54,144 KB
testcase_19 AC 109 ms
52,676 KB
testcase_20 AC 112 ms
53,076 KB
testcase_21 AC 122 ms
54,292 KB
testcase_22 AC 121 ms
54,208 KB
testcase_23 AC 127 ms
54,060 KB
testcase_24 AC 1,148 ms
73,280 KB
testcase_25 AC 1,116 ms
73,596 KB
testcase_26 AC 1,138 ms
73,568 KB
testcase_27 AC 1,144 ms
73,820 KB
testcase_28 AC 1,145 ms
73,056 KB
testcase_29 MLE -
testcase_30 AC 4,809 ms
122,504 KB
testcase_31 MLE -
testcase_32 AC 4,714 ms
122,240 KB
testcase_33 AC 4,397 ms
121,756 KB
testcase_34 AC 4,671 ms
122,232 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 && a[y][x] == 1){
				search(y, x);
			}
		}
	}
}

0