結果

問題 No.179 塗り分け
ユーザー Flere0114Flere0114
提出日時 2016-02-24 11:46:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,552 bytes
コンパイル時間 3,871 ms
コンパイル使用メモリ 78,140 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-10-03 03:16:01
合計ジャッジ時間 10,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,320 KB
testcase_01 AC 117 ms
40,940 KB
testcase_02 AC 115 ms
41,020 KB
testcase_03 WA -
testcase_04 AC 118 ms
40,900 KB
testcase_05 AC 121 ms
40,932 KB
testcase_06 WA -
testcase_07 AC 137 ms
41,016 KB
testcase_08 AC 131 ms
41,028 KB
testcase_09 AC 114 ms
40,296 KB
testcase_10 AC 125 ms
41,084 KB
testcase_11 AC 120 ms
41,112 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 107 ms
40,400 KB
testcase_16 AC 122 ms
40,964 KB
testcase_17 AC 119 ms
41,020 KB
testcase_18 AC 129 ms
41,184 KB
testcase_19 AC 115 ms
40,312 KB
testcase_20 AC 126 ms
41,188 KB
testcase_21 AC 127 ms
41,196 KB
testcase_22 WA -
testcase_23 AC 117 ms
40,304 KB
testcase_24 AC 110 ms
39,996 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 125 ms
41,024 KB
testcase_28 WA -
testcase_29 AC 126 ms
41,344 KB
testcase_30 AC 127 ms
41,332 KB
testcase_31 AC 113 ms
40,168 KB
testcase_32 WA -
testcase_33 AC 127 ms
41,264 KB
testcase_34 WA -
testcase_35 AC 129 ms
41,184 KB
testcase_36 AC 108 ms
40,312 KB
testcase_37 AC 109 ms
39,904 KB
testcase_38 WA -
testcase_39 AC 107 ms
40,276 KB
testcase_40 AC 120 ms
40,884 KB
testcase_41 AC 121 ms
41,336 KB
testcase_42 WA -
testcase_43 AC 119 ms
41,368 KB
testcase_44 AC 119 ms
41,032 KB
testcase_45 AC 118 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No179 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = Integer.parseInt(sc.next());
        int w = Integer.parseInt(sc.next());
        String s;
        int first = 0, trans = 0, diff = 0, count = 0, check = 0;
        boolean[] b = new boolean[h*w];
        for (int i = 0; i < h; i++) {
            s = sc.next();
            for (int j = 0; j < w; j++) {
                if(s.charAt(j) == '#'){
                    b[i*w+j] = true;
                    count++;
                }
            }
        }

        if(count % 2 == 1){
            System.out.println("NO");
            return;
        }
        count /= 2;

        for (int i = 0; i < h * w; i++) {
            if(b[i]){
                first = i;
                break;
            }
        }

        for (int i = first + 1; i < h * w; i++) {
            if(b[i]){
                trans = i;
                diff = trans - first;
                check = 0;
                for (int j = first + 1; j < h * w; j++) {
                    if(b[j] && j != trans){
                        if(j+diff >= h*w || !b[j+diff]){
                            break;
                        }
                        check++;
                    }
                    if(check == count / 2){
                        System.out.println("YES");
                        return;
                    }
                }
            }
        }
        System.out.println("NO");
        return;
    }
}
0