結果

問題 No.179 塗り分け
ユーザー mlihua09mlihua09
提出日時 2020-08-23 14:04:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,392 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-10-15 18:13:27
合計ジャッジ時間 17,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,248 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 41 ms
53,120 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 41 ms
53,888 KB
testcase_05 AC 197 ms
77,696 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 WA -
testcase_08 AC 875 ms
80,128 KB
testcase_09 AC 872 ms
80,512 KB
testcase_10 AC 53 ms
63,744 KB
testcase_11 AC 53 ms
63,488 KB
testcase_12 AC 1,008 ms
82,944 KB
testcase_13 AC 56 ms
65,408 KB
testcase_14 AC 56 ms
67,200 KB
testcase_15 AC 39 ms
52,992 KB
testcase_16 AC 40 ms
52,992 KB
testcase_17 AC 39 ms
53,632 KB
testcase_18 AC 94 ms
76,672 KB
testcase_19 AC 94 ms
76,800 KB
testcase_20 AC 959 ms
82,688 KB
testcase_21 AC 948 ms
81,580 KB
testcase_22 AC 943 ms
81,792 KB
testcase_23 AC 53 ms
63,232 KB
testcase_24 AC 921 ms
81,204 KB
testcase_25 AC 64 ms
71,040 KB
testcase_26 AC 219 ms
77,664 KB
testcase_27 AC 1,007 ms
81,620 KB
testcase_28 AC 114 ms
76,376 KB
testcase_29 AC 1,078 ms
82,688 KB
testcase_30 AC 514 ms
79,664 KB
testcase_31 AC 1,093 ms
82,248 KB
testcase_32 AC 356 ms
78,524 KB
testcase_33 AC 1,057 ms
82,560 KB
testcase_34 AC 276 ms
77,824 KB
testcase_35 AC 1,093 ms
82,560 KB
testcase_36 AC 40 ms
53,248 KB
testcase_37 AC 42 ms
54,144 KB
testcase_38 AC 43 ms
53,632 KB
testcase_39 AC 39 ms
53,660 KB
testcase_40 AC 47 ms
60,800 KB
testcase_41 AC 41 ms
53,248 KB
testcase_42 AC 41 ms
54,400 KB
testcase_43 AC 91 ms
76,240 KB
testcase_44 AC 209 ms
77,244 KB
testcase_45 AC 66 ms
73,344 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()
                
                
                
print('NO')
0