結果

問題 No.179 塗り分け
ユーザー mlihua09mlihua09
提出日時 2020-08-23 14:06:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,467 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-10-15 18:13:48
合計ジャッジ時間 19,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 48 ms
53,504 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 48 ms
53,760 KB
testcase_04 AC 49 ms
54,016 KB
testcase_05 AC 228 ms
77,824 KB
testcase_06 AC 49 ms
54,016 KB
testcase_07 WA -
testcase_08 AC 1,002 ms
80,640 KB
testcase_09 AC 991 ms
80,640 KB
testcase_10 AC 62 ms
63,360 KB
testcase_11 AC 62 ms
63,616 KB
testcase_12 AC 1,138 ms
83,456 KB
testcase_13 AC 67 ms
65,792 KB
testcase_14 AC 67 ms
67,200 KB
testcase_15 AC 46 ms
53,120 KB
testcase_16 AC 47 ms
53,120 KB
testcase_17 WA -
testcase_18 AC 111 ms
77,184 KB
testcase_19 AC 110 ms
76,928 KB
testcase_20 AC 1,157 ms
82,944 KB
testcase_21 AC 1,085 ms
81,792 KB
testcase_22 AC 1,069 ms
81,408 KB
testcase_23 AC 63 ms
63,232 KB
testcase_24 AC 1,055 ms
81,152 KB
testcase_25 AC 76 ms
71,168 KB
testcase_26 AC 259 ms
77,912 KB
testcase_27 AC 1,151 ms
82,176 KB
testcase_28 AC 131 ms
76,544 KB
testcase_29 AC 1,223 ms
83,072 KB
testcase_30 AC 572 ms
79,744 KB
testcase_31 AC 1,236 ms
82,432 KB
testcase_32 AC 406 ms
78,464 KB
testcase_33 AC 1,211 ms
82,816 KB
testcase_34 AC 314 ms
77,952 KB
testcase_35 AC 1,247 ms
82,944 KB
testcase_36 AC 47 ms
53,376 KB
testcase_37 AC 47 ms
53,632 KB
testcase_38 AC 47 ms
53,504 KB
testcase_39 AC 47 ms
53,632 KB
testcase_40 AC 56 ms
60,800 KB
testcase_41 AC 47 ms
53,504 KB
testcase_42 AC 49 ms
54,144 KB
testcase_43 AC 107 ms
76,160 KB
testcase_44 AC 242 ms
77,184 KB
testcase_45 AC 81 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #




H, W = map(int, input().split())

S = [[1 if i == '#' else 0 for i in input()] for _ in range(H)]

from copy import deepcopy

for i in range(H):
    
    for j in range(-W + 1, W):
        
        if i == 0 and j <= 0:
            
            
            continue
        
        
        else:
            
            s = deepcopy(S)
            
            B = True
            
            for h in range(H):
                
                if B:
                    
                    
                    for w in range(W):
                    
                      if s[h][w] == 1:
                          
                          s[h][w] = 0
                          
                          if h + i < H and 0 <= w + j < W and s[h + i][w + j]:
                              
                              s[h + i][w + j] = 0
                              
                              
                          else:
                              
                              B = False
                              
                              break
                          
                          
                else:
                    
                    break
                
            if B:
                
                print('YES')
                
                exit()
                
                
               
if H == 1 and W == 1 and S[0][0] == 0:
    
    print('YES')
    
else:
    print('NO')
0