結果

問題 No.86 TVザッピング(2)
ユーザー kano_townkano_town
提出日時 2014-12-07 18:35:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 813 bytes
コンパイル時間 2,903 ms
コンパイル使用メモリ 77,752 KB
実行使用メモリ 56,512 KB
最終ジャッジ日時 2024-06-11 16:04:13
合計ジャッジ時間 7,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,044 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 102 ms
53,016 KB
testcase_04 AC 106 ms
52,956 KB
testcase_05 AC 111 ms
54,240 KB
testcase_06 AC 101 ms
53,076 KB
testcase_07 WA -
testcase_08 AC 138 ms
54,084 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 113 ms
54,244 KB
testcase_14 AC 149 ms
54,216 KB
testcase_15 AC 138 ms
54,100 KB
testcase_16 AC 135 ms
53,972 KB
testcase_17 AC 105 ms
52,860 KB
testcase_18 AC 120 ms
53,896 KB
testcase_19 AC 117 ms
54,184 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 140 ms
53,896 KB
testcase_24 WA -
testcase_25 AC 106 ms
53,484 KB
testcase_26 WA -
testcase_27 AC 113 ms
54,072 KB
testcase_28 AC 117 ms
54,120 KB
testcase_29 WA -
testcase_30 AC 115 ms
53,848 KB
testcase_31 AC 122 ms
54,108 KB
testcase_32 AC 110 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder85 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt(), m = sc.nextInt();
		String[] a = new String[n];
		for (int i = 0; i < n; i++) a[i] = sc.next();

		int oddCount = 0, buf;
		for (int i = 0; i < n; i++) {
			for (int j = 0; j < m; j++) {
				if (a[i].charAt(j) == '#') continue;
				buf = 0;
				if (i - 1 >= 0) buf += a[i - 1].charAt(j) == '.' ? 1 : 0;
				if (i + 1 < n) buf += a[i + 1].charAt(j) == '.' ? 1 : 0;
				if (j - 1 >= 0) buf += a[i].charAt(j - 1) == '.' ? 1 : 0;
				if (j + 1 < m) buf += a[i].charAt(j + 1) == '.' ? 1 : 0;
				if (buf % 2 == 0) oddCount++;
			}
		}
		if (oddCount % 2 == 0)
			System.out.println("YES");
		else 
			System.out.println("NO");
	}
}
0