結果

問題 No.179 塗り分け
ユーザー roarisroaris
提出日時 2019-08-08 10:35:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-18 18:56:27
合計ジャッジ時間 4,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 75 ms
75,724 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 WA -
testcase_08 AC 119 ms
76,288 KB
testcase_09 AC 127 ms
76,288 KB
testcase_10 AC 47 ms
59,904 KB
testcase_11 AC 46 ms
59,648 KB
testcase_12 AC 152 ms
76,284 KB
testcase_13 AC 43 ms
58,240 KB
testcase_14 AC 48 ms
64,128 KB
testcase_15 AC 38 ms
51,712 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 37 ms
52,480 KB
testcase_18 AC 66 ms
70,272 KB
testcase_19 AC 59 ms
68,992 KB
testcase_20 AC 141 ms
76,228 KB
testcase_21 AC 147 ms
76,160 KB
testcase_22 AC 173 ms
76,160 KB
testcase_23 AC 49 ms
59,904 KB
testcase_24 AC 143 ms
77,056 KB
testcase_25 AC 53 ms
61,952 KB
testcase_26 AC 87 ms
75,776 KB
testcase_27 AC 146 ms
76,416 KB
testcase_28 AC 76 ms
76,032 KB
testcase_29 AC 144 ms
76,544 KB
testcase_30 AC 99 ms
76,160 KB
testcase_31 AC 128 ms
76,672 KB
testcase_32 AC 88 ms
76,032 KB
testcase_33 AC 148 ms
77,440 KB
testcase_34 AC 85 ms
76,160 KB
testcase_35 AC 142 ms
76,544 KB
testcase_36 AC 35 ms
52,096 KB
testcase_37 AC 36 ms
51,840 KB
testcase_38 AC 35 ms
51,968 KB
testcase_39 AC 34 ms
52,096 KB
testcase_40 AC 38 ms
57,472 KB
testcase_41 AC 35 ms
52,224 KB
testcase_42 AC 35 ms
51,840 KB
testcase_43 AC 61 ms
75,392 KB
testcase_44 AC 80 ms
75,648 KB
testcase_45 AC 46 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
S = [input() for _ in range(H)]

for dx in range(H):
    for dy in range(-W-1, W):
        if dx == 0 and dy <= 0:
            continue
        
        flag = [[-1 for _ in range(W)] for _ in range(H)]
        
        for i in range(H):
            for j in range(W):
                if S[i][j] == '#' and flag[i][j] == -1:
                    if i+dx < H and 0 <= j+dy < W and S[i+dx][j+dy] == '#':
                        flag[i][j] = 0
                        flag[i+dx][j+dy] = 1
                    else:
                        break
            else:
                continue
            break
        else:
            print('YES')
            exit()

print('NO')
0