結果

問題 No.179 塗り分け
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-10 22:33:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 204,288 KB
最終ジャッジ日時 2024-11-27 02:33:49
合計ジャッジ時間 79,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,344 KB
testcase_01 AC 37 ms
181,508 KB
testcase_02 WA -
testcase_03 AC 37 ms
57,216 KB
testcase_04 AC 35 ms
57,728 KB
testcase_05 AC 382 ms
196,620 KB
testcase_06 WA -
testcase_07 AC 42 ms
178,684 KB
testcase_08 AC 75 ms
81,792 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 51 ms
156,296 KB
testcase_14 AC 41 ms
64,000 KB
testcase_15 AC 36 ms
181,208 KB
testcase_16 WA -
testcase_17 AC 39 ms
179,648 KB
testcase_18 AC 50 ms
66,688 KB
testcase_19 AC 48 ms
189,652 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 71 ms
82,176 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 37 ms
52,096 KB
testcase_37 AC 36 ms
52,352 KB
testcase_38 AC 36 ms
52,224 KB
testcase_39 AC 36 ms
51,968 KB
testcase_40 AC 38 ms
52,480 KB
testcase_41 AC 41 ms
51,584 KB
testcase_42 AC 39 ms
51,840 KB
testcase_43 AC 137 ms
76,672 KB
testcase_44 AC 375 ms
77,952 KB
testcase_45 AC 79 ms
204,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
g=[input() for i in range(h)]
cnt=0
for i in range(h):
    for j in range(w):
        if g[i][j] == '#':
            cnt+=1
if cnt ==0:
    print('NO')
    exit()
    
    
for x in range(h):
    for y in range(w):
        for xx in range(x+1,h):
            for yy in range(y+1,w):
                xz = xx-x
                yz = yy-y
                f=[[0]*w for i in range(h)]
                ff=0
                for i in range(h):
                    for j in range(w):
                        if g[i][j] == '#' and f[i][j] == 0:                        
                            if i+xz >= h or j + yz >=w:
                                ff = 1
                                break
                            if g[i+xz][j+yz] != '#':
                                ff = 1
                                break
                            f[i+xz][j+yz] = 1
                            f[i][j] = 1
                    if ff == 1:
                        break

                if ff == 0:
                    print('YES')
                    exit()

print('NO')
        
            
    
    
0