結果

問題 No.179 塗り分け
ユーザー mlihua09mlihua09
提出日時 2020-08-23 14:14:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,263 ms / 3,000 ms
コード長 1,462 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 83,340 KB
最終ジャッジ日時 2024-07-23 15:18:17
合計ジャッジ時間 18,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,580 KB
testcase_01 AC 45 ms
54,560 KB
testcase_02 AC 43 ms
54,128 KB
testcase_03 AC 43 ms
55,060 KB
testcase_04 AC 44 ms
55,120 KB
testcase_05 AC 211 ms
78,204 KB
testcase_06 AC 44 ms
54,920 KB
testcase_07 AC 48 ms
59,888 KB
testcase_08 AC 966 ms
80,484 KB
testcase_09 AC 970 ms
80,180 KB
testcase_10 AC 57 ms
64,548 KB
testcase_11 AC 57 ms
64,756 KB
testcase_12 AC 1,085 ms
83,340 KB
testcase_13 AC 60 ms
67,984 KB
testcase_14 AC 60 ms
68,664 KB
testcase_15 AC 44 ms
54,940 KB
testcase_16 AC 44 ms
54,924 KB
testcase_17 AC 44 ms
55,388 KB
testcase_18 AC 100 ms
77,008 KB
testcase_19 AC 98 ms
76,932 KB
testcase_20 AC 1,108 ms
82,904 KB
testcase_21 AC 1,054 ms
81,544 KB
testcase_22 AC 1,099 ms
81,712 KB
testcase_23 AC 58 ms
64,884 KB
testcase_24 AC 1,036 ms
81,660 KB
testcase_25 AC 66 ms
73,472 KB
testcase_26 AC 246 ms
78,188 KB
testcase_27 AC 1,128 ms
81,936 KB
testcase_28 AC 120 ms
76,784 KB
testcase_29 AC 1,243 ms
83,276 KB
testcase_30 AC 567 ms
79,844 KB
testcase_31 AC 1,263 ms
82,780 KB
testcase_32 AC 405 ms
78,496 KB
testcase_33 AC 1,226 ms
83,208 KB
testcase_34 AC 306 ms
78,164 KB
testcase_35 AC 1,247 ms
82,840 KB
testcase_36 AC 44 ms
55,080 KB
testcase_37 AC 45 ms
54,200 KB
testcase_38 AC 45 ms
54,992 KB
testcase_39 AC 43 ms
53,800 KB
testcase_40 AC 51 ms
61,716 KB
testcase_41 AC 44 ms
54,460 KB
testcase_42 AC 45 ms
55,148 KB
testcase_43 AC 95 ms
76,340 KB
testcase_44 AC 228 ms
77,616 KB
testcase_45 AC 69 ms
73,592 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

if sum([sum(s) for s in S]) < 2:
    
    print('NO')
    
    exit()

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()
                
                
                
print('NO')
0