結果

問題 No.179 塗り分け
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-21 13:21:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,038 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 54,900 KB
最終ジャッジ日時 2024-10-02 14:14:34
合計ジャッジ時間 10,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,200 KB
testcase_01 AC 123 ms
41,160 KB
testcase_02 AC 126 ms
41,368 KB
testcase_03 AC 134 ms
41,260 KB
testcase_04 AC 117 ms
40,040 KB
testcase_05 AC 162 ms
41,524 KB
testcase_06 AC 127 ms
41,184 KB
testcase_07 WA -
testcase_08 AC 193 ms
42,104 KB
testcase_09 WA -
testcase_10 AC 115 ms
40,372 KB
testcase_11 AC 123 ms
40,980 KB
testcase_12 AC 185 ms
41,360 KB
testcase_13 AC 123 ms
41,084 KB
testcase_14 AC 127 ms
41,220 KB
testcase_15 AC 123 ms
41,128 KB
testcase_16 AC 124 ms
41,156 KB
testcase_17 AC 125 ms
41,332 KB
testcase_18 AC 159 ms
41,284 KB
testcase_19 AC 164 ms
41,724 KB
testcase_20 AC 186 ms
42,268 KB
testcase_21 AC 175 ms
42,004 KB
testcase_22 AC 175 ms
42,124 KB
testcase_23 AC 130 ms
41,584 KB
testcase_24 AC 168 ms
42,004 KB
testcase_25 AC 149 ms
41,272 KB
testcase_26 WA -
testcase_27 AC 206 ms
42,240 KB
testcase_28 WA -
testcase_29 AC 201 ms
42,316 KB
testcase_30 WA -
testcase_31 AC 201 ms
42,112 KB
testcase_32 AC 197 ms
42,108 KB
testcase_33 AC 260 ms
42,320 KB
testcase_34 WA -
testcase_35 AC 198 ms
42,396 KB
testcase_36 AC 124 ms
41,288 KB
testcase_37 AC 119 ms
41,432 KB
testcase_38 AC 106 ms
40,212 KB
testcase_39 AC 123 ms
41,148 KB
testcase_40 AC 133 ms
41,232 KB
testcase_41 AC 134 ms
41,268 KB
testcase_42 AC 132 ms
41,272 KB
testcase_43 AC 131 ms
41,272 KB
testcase_44 AC 163 ms
41,580 KB
testcase_45 AC 112 ms
40,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int h = koko.nextInt();
        int w = koko.nextInt();
        boolean [][] moto = new boolean[h][w];
        boolean[][] color = new boolean[h][w];
        String[] s = new String[h];
        for(int i=0; i<h; i++){
            s[i] = koko.next();
            char[] ss = s[i].toCharArray();
            for(int j=0; j<w; j++){
                if(ss[j]=='.'){
                    moto[i][j]=true;
                    color[i][j]=true;
                }
            }
        }
        boolean bflag = false;
loop2:  for(int i=0; i<h; i++){//ぬり平行移動(たて
            for(int j=0; j<w; j++){//ぬり平行移動(よこ
                if(i!=0||j!=0){
                    for(int a=0; a<h; a++){
                        for(int b=0; b<w; b++){
                            color[a][b]=moto[a][b];
                        }
                    }
                    for(int k=0; k+i<h; k++){
                        for(int l=0; l+j<w; l++){
                            if(!color[k][l]&&!color[k+i][l+j]){
                                color[k][l]=true;
                                color[k+i][l+j]=true;
                            }
                        }
                    }
                    boolean flag = false;
                    for(int m=0; m<h; m++){
                        for(int n=0; n<w; n++){
                            if(!color[m][n]){
                                flag = true;
                                break;
                            }
                        }
                    }
                    if(!flag){
                        System.out.println("YES");
                        bflag = true;
                        break loop2;
                    }
                    
                }
            }
        }
        if(!bflag){
            System.out.println("NO");
        }
    }
}
        
        
0