結果

問題 No.923 オセロきりきざむたん
ユーザー ks2mks2m
提出日時 2019-11-08 23:03:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,244 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 76,228 KB
実行使用メモリ 47,672 KB
最終ジャッジ日時 2024-09-15 02:53:58
合計ジャッジ時間 9,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,768 KB
testcase_01 AC 49 ms
36,680 KB
testcase_02 AC 51 ms
36,680 KB
testcase_03 AC 51 ms
36,788 KB
testcase_04 AC 53 ms
36,532 KB
testcase_05 AC 53 ms
36,684 KB
testcase_06 AC 53 ms
36,828 KB
testcase_07 AC 50 ms
36,872 KB
testcase_08 AC 51 ms
36,700 KB
testcase_09 AC 49 ms
36,792 KB
testcase_10 AC 52 ms
36,844 KB
testcase_11 AC 49 ms
36,856 KB
testcase_12 AC 50 ms
36,884 KB
testcase_13 AC 51 ms
36,408 KB
testcase_14 AC 51 ms
36,356 KB
testcase_15 AC 50 ms
36,884 KB
testcase_16 AC 51 ms
36,884 KB
testcase_17 AC 50 ms
36,964 KB
testcase_18 AC 51 ms
36,948 KB
testcase_19 AC 51 ms
36,704 KB
testcase_20 AC 52 ms
36,840 KB
testcase_21 AC 50 ms
36,888 KB
testcase_22 AC 55 ms
36,540 KB
testcase_23 AC 52 ms
36,512 KB
testcase_24 AC 51 ms
36,888 KB
testcase_25 AC 51 ms
36,940 KB
testcase_26 AC 95 ms
39,476 KB
testcase_27 AC 87 ms
38,568 KB
testcase_28 AC 91 ms
38,680 KB
testcase_29 AC 91 ms
38,820 KB
testcase_30 AC 63 ms
37,312 KB
testcase_31 AC 70 ms
37,872 KB
testcase_32 AC 50 ms
36,680 KB
testcase_33 AC 49 ms
36,552 KB
testcase_34 AC 49 ms
36,940 KB
testcase_35 AC 52 ms
36,776 KB
testcase_36 AC 53 ms
36,644 KB
testcase_37 AC 49 ms
36,908 KB
testcase_38 AC 49 ms
36,744 KB
testcase_39 AC 49 ms
36,872 KB
testcase_40 AC 51 ms
36,512 KB
testcase_41 AC 49 ms
36,756 KB
testcase_42 AC 50 ms
36,496 KB
testcase_43 AC 51 ms
36,820 KB
testcase_44 AC 51 ms
36,948 KB
testcase_45 AC 54 ms
36,636 KB
testcase_46 AC 53 ms
36,968 KB
testcase_47 AC 54 ms
36,672 KB
testcase_48 AC 54 ms
36,848 KB
testcase_49 AC 53 ms
36,904 KB
testcase_50 AC 101 ms
39,968 KB
testcase_51 AC 100 ms
39,776 KB
testcase_52 AC 99 ms
40,052 KB
testcase_53 AC 119 ms
44,536 KB
testcase_54 AC 101 ms
40,264 KB
testcase_55 AC 106 ms
40,832 KB
testcase_56 AC 104 ms
41,252 KB
testcase_57 AC 52 ms
36,680 KB
testcase_58 AC 52 ms
36,672 KB
testcase_59 AC 53 ms
36,852 KB
testcase_60 AC 53 ms
36,556 KB
testcase_61 AC 52 ms
36,616 KB
testcase_62 AC 55 ms
36,676 KB
testcase_63 AC 51 ms
36,736 KB
testcase_64 AC 52 ms
37,076 KB
testcase_65 AC 138 ms
47,428 KB
testcase_66 AC 139 ms
47,360 KB
testcase_67 AC 139 ms
47,144 KB
testcase_68 AC 141 ms
47,256 KB
testcase_69 AC 89 ms
39,040 KB
testcase_70 AC 90 ms
39,080 KB
testcase_71 AC 139 ms
47,672 KB
testcase_72 AC 72 ms
38,824 KB
testcase_73 AC 52 ms
36,744 KB
testcase_74 AC 57 ms
36,640 KB
testcase_75 AC 87 ms
38,472 KB
testcase_76 AC 59 ms
37,132 KB
testcase_77 AC 86 ms
38,868 KB
testcase_78 AC 53 ms
37,000 KB
testcase_79 AC 87 ms
38,864 KB
testcase_80 AC 82 ms
38,024 KB
testcase_81 AC 66 ms
37,448 KB
testcase_82 AC 83 ms
39,020 KB
testcase_83 AC 64 ms
37,532 KB
testcase_84 AC 85 ms
38,708 KB
testcase_85 AC 81 ms
38,616 KB
testcase_86 AC 64 ms
37,788 KB
testcase_87 AC 72 ms
37,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int h = Integer.parseInt(sa[0]);
		int w = Integer.parseInt(sa[1]);
		char[][] a = new char[h][w];
		for (int i = 0; i < h; i++) {
			a[i] = br.readLine().toCharArray();
		}
		br.close();

		boolean[] h0 = new boolean[h];
		boolean[] h1 = new boolean[h];
		for (int i = 0; i < h; i++) {
			boolean f0 = true;
			boolean f1 = true;
			for (int j = 0; j < w; j++) {
				if (a[i][j] == '0') {
					f1 = false;
				} else {
					f0 = false;
				}
			}
			h0[i] = f0;
			h1[i] = f1;
		}

		boolean[] w0 = new boolean[w];
		boolean[] w1 = new boolean[w];
		for (int j = 0; j < w; j++) {
			boolean f0 = true;
			boolean f1 = true;
			for (int i = 0; i < h; i++) {
				if (a[i][j] == '0') {
					f1 = false;
				} else {
					f0 = false;
				}
			}
			w0[j] = f0;
			w1[j] = f1;
		}

		for (int i = 0; i < h; i++) {
			for (int j = 0; j < w; j++) {
				if (h0[i] && w0[j] || h1[i] && w1[j]) {
					System.out.println("NO");
					return;
				}
			}
		}
		System.out.println("YES");
	}
}
0