結果

問題 No.697 池の数はいくつか
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-23 00:51:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 3,434 ms
コンパイル使用メモリ 77,152 KB
実行使用メモリ 122,500 KB
最終ジャッジ日時 2024-11-25 13:47:39
合計ジャッジ時間 39,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,888 KB
testcase_01 AC 119 ms
53,836 KB
testcase_02 AC 119 ms
53,688 KB
testcase_03 AC 106 ms
52,624 KB
testcase_04 WA -
testcase_05 AC 119 ms
54,120 KB
testcase_06 WA -
testcase_07 AC 108 ms
52,612 KB
testcase_08 AC 120 ms
53,760 KB
testcase_09 AC 113 ms
53,696 KB
testcase_10 WA -
testcase_11 AC 96 ms
52,396 KB
testcase_12 AC 114 ms
54,012 KB
testcase_13 WA -
testcase_14 AC 103 ms
52,648 KB
testcase_15 WA -
testcase_16 AC 101 ms
52,556 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 114 ms
54,184 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 120 ms
53,756 KB
testcase_23 AC 115 ms
53,564 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 4,098 ms
121,656 KB
testcase_30 WA -
testcase_31 AC 4,134 ms
122,308 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No697{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

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

		int ans = 0;
		int[][] a = new int[H+2][W+2];
		Arrays.fill(a[0], 0);
		Arrays.fill(a[H+1], 0);
		for(int h = 1; h < H+1; h++){
			Arrays.fill(a[h], 0);
			for(int w = 1; w < W+1; w++){
				a[h][w] = sc.nextInt();
				if(a[h][w] == 1 &&
				   (a[h][w-1]==0 && a[h-1][w]==0)){
					ans++;
				}
			}
		}

		for(int h = 2; h < H+1; h++){
			for(int w = 2; w < W+1; w++){
				if(a[h][w] == 1 &&
				   (a[h][w-1]==0 && a[h-1][w]==0 && (a[h][w+1]==1 || a[h+1][w]==1))){
					ans--;
				}
			}
		}
		
		System.out.println(ans);
	}
}
0