結果

問題 No.179 塗り分け
ユーザー buey_tbuey_t
提出日時 2023-03-24 09:56:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,579 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 92,640 KB
最終ジャッジ日時 2024-09-18 15:56:38
合計ジャッジ時間 13,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
85,204 KB
testcase_01 AC 141 ms
88,960 KB
testcase_02 AC 135 ms
85,120 KB
testcase_03 AC 146 ms
89,216 KB
testcase_04 AC 143 ms
89,216 KB
testcase_05 AC 216 ms
90,496 KB
testcase_06 AC 143 ms
89,088 KB
testcase_07 AC 145 ms
89,560 KB
testcase_08 AC 438 ms
91,548 KB
testcase_09 WA -
testcase_10 AC 159 ms
89,984 KB
testcase_11 AC 162 ms
89,728 KB
testcase_12 AC 399 ms
91,684 KB
testcase_13 AC 149 ms
89,728 KB
testcase_14 AC 151 ms
89,728 KB
testcase_15 AC 130 ms
84,992 KB
testcase_16 AC 134 ms
85,248 KB
testcase_17 AC 133 ms
85,248 KB
testcase_18 AC 168 ms
90,240 KB
testcase_19 AC 167 ms
90,112 KB
testcase_20 AC 444 ms
92,544 KB
testcase_21 AC 448 ms
91,868 KB
testcase_22 AC 459 ms
91,536 KB
testcase_23 AC 155 ms
89,916 KB
testcase_24 AC 455 ms
91,496 KB
testcase_25 AC 165 ms
89,856 KB
testcase_26 WA -
testcase_27 AC 439 ms
91,392 KB
testcase_28 WA -
testcase_29 AC 460 ms
92,640 KB
testcase_30 WA -
testcase_31 AC 433 ms
91,392 KB
testcase_32 AC 239 ms
90,216 KB
testcase_33 AC 463 ms
91,776 KB
testcase_34 WA -
testcase_35 AC 466 ms
91,648 KB
testcase_36 AC 148 ms
89,240 KB
testcase_37 AC 144 ms
89,216 KB
testcase_38 AC 146 ms
89,468 KB
testcase_39 AC 148 ms
89,280 KB
testcase_40 AC 148 ms
89,600 KB
testcase_41 AC 128 ms
85,376 KB
testcase_42 AC 142 ms
89,344 KB
testcase_43 AC 168 ms
89,984 KB
testcase_44 AC 205 ms
90,112 KB
testcase_45 AC 154 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    
    
    '''
    H,Wが小さい
    4重ループまでは回る
    最左上を赤で塗るとして、そこからどう平行移動するのかを全探索する
    
    '''
    
    H,W = map(int, input().split())
    S = [list(input()) for _ in range(H)]
    
    sy = -1
    sx = -1
    
    for i in range(H):
        for j in range(W):
            if S[i][j] == '#':
                sy = i
                sx = j
                break
    
    if sy == -1:
        print('NO')
        exit()
    
    for dy in range(H):
        for dx in range(W):
            
            if dy == dx == 0:
                continue
            
            T = deepcopy(S)
            f = True
            
            for i in range(H):
                for j in range(W):
                    if T[i][j] == '#':
                        if i+dy>=H or j+dx>=W:
                            f = False
                            break
                        
                        if T[i+dy][j+dx] == '#':
                            T[i][j] = '.'
                            T[i+dy][j+dx] = '.'
                        else:
                            f = False
                            break
                
                else:
                    continue
                break
            
            for i in range(H):
                for j in range(W):
                    if T[i][j] == '#':
                        f = False
                        break
                else:
                    continue
                break
            
            if f:
                print('YES')
                exit()
    
    print('NO')
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0