結果

問題 No.179 塗り分け
ユーザー pajannatpajannat
提出日時 2021-04-13 23:25:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,240 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 87,044 KB
最終ジャッジ日時 2024-06-30 02:02:53
合計ジャッジ時間 33,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,276 KB
testcase_01 AC 44 ms
54,696 KB
testcase_02 AC 56 ms
66,012 KB
testcase_03 AC 44 ms
54,924 KB
testcase_04 AC 58 ms
66,708 KB
testcase_05 AC 216 ms
77,156 KB
testcase_06 AC 145 ms
77,200 KB
testcase_07 WA -
testcase_08 AC 1,075 ms
86,412 KB
testcase_09 AC 1,084 ms
85,724 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,166 ms
85,284 KB
testcase_13 AC 59 ms
68,744 KB
testcase_14 AC 59 ms
69,700 KB
testcase_15 AC 41 ms
53,900 KB
testcase_16 AC 42 ms
54,468 KB
testcase_17 AC 41 ms
53,968 KB
testcase_18 AC 1,337 ms
86,116 KB
testcase_19 WA -
testcase_20 AC 1,238 ms
85,556 KB
testcase_21 AC 1,108 ms
85,744 KB
testcase_22 AC 1,304 ms
86,204 KB
testcase_23 WA -
testcase_24 AC 1,106 ms
85,948 KB
testcase_25 AC 1,105 ms
85,668 KB
testcase_26 AC 1,159 ms
85,748 KB
testcase_27 AC 1,216 ms
85,832 KB
testcase_28 AC 1,349 ms
86,972 KB
testcase_29 AC 1,406 ms
86,036 KB
testcase_30 AC 1,404 ms
86,184 KB
testcase_31 AC 1,309 ms
86,064 KB
testcase_32 AC 1,389 ms
86,332 KB
testcase_33 AC 1,343 ms
85,896 KB
testcase_34 AC 1,440 ms
86,608 KB
testcase_35 AC 1,365 ms
85,804 KB
testcase_36 AC 43 ms
54,452 KB
testcase_37 AC 42 ms
55,532 KB
testcase_38 AC 42 ms
55,384 KB
testcase_39 AC 41 ms
55,500 KB
testcase_40 AC 52 ms
64,020 KB
testcase_41 AC 41 ms
53,816 KB
testcase_42 AC 43 ms
56,052 KB
testcase_43 AC 118 ms
76,956 KB
testcase_44 AC 231 ms
77,888 KB
testcase_45 AC 87 ms
76,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    # 入力行数が多いとき。
    from sys import stdin
    # 数値として入力一つを読み込み
    H, W = map(int, stdin.readline().rstrip().split())
    d = [stdin.readline().rstrip() for i in range(H)]

    # 平行移動が成功したかどうかを判断するフラグ
    success_flg = False
    blue = [[False for w in range(W)] for h in range(H)]
    # リストblueの値を渡す
    import copy
    blue_tmp = copy.deepcopy(blue)

    # 平行移動パターンの全探索
    for i in range(H):
        for j in range(-W+1,W):
            # 移動なしパターンを除外
            if i == 0 and j == 0:
                pass
            # 左方向への移動を除外
            elif i == 0 and j < 0:
                pass
            else:
                # すべてのマスを平行移動する
                # 最後までflg=TrueならYESを出力
                flg = True
                # マスの色を初期化
                blue_tmp = copy.deepcopy(blue)
                for h in range(H):
                    for w in range(W):
                        # マスが白色または青色の場合は判定しない
                        if d[h][w] == "." or blue_tmp[h][w]:
                            pass
                        # 平行移動して範囲内の場合に判定
                        elif h+i<H and h+i>=0 and w+j<W and w+j>=0:
                            if d[h][w] == "#" and d[h+i][w+j] == "#":
                                blue_tmp[h+i][w+j] = True
                            # 平行移動先のマスが"#"でない場合はNG
                            else:
                                flg = False
                        # 平行移動して範囲外に出る場合はNG
                        else:
                            flg = False
                # すべてのマスを平行移動させて最後までNGなしなら"YES"を出力
                if flg:
                    print("YES")
                    success_flg = True                   
                        
    # 一度も"YES"を出力していない場合、"NO"を出力
    if success_flg==False:
        print("NO")

if __name__ == '__main__':
    main()
0