結果

問題 No.179 塗り分け
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-10 22:35:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,259 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 197,888 KB
最終ジャッジ日時 2024-11-27 02:35:15
合計ジャッジ時間 16,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
157,568 KB
testcase_02 WA -
testcase_03 AC 40 ms
166,912 KB
testcase_04 AC 39 ms
57,600 KB
testcase_05 AC 52 ms
62,848 KB
testcase_06 WA -
testcase_07 AC 43 ms
58,368 KB
testcase_08 AC 76 ms
76,032 KB
testcase_09 WA -
testcase_10 AC 48 ms
60,288 KB
testcase_11 AC 47 ms
60,416 KB
testcase_12 TLE -
testcase_13 AC 47 ms
58,752 KB
testcase_14 AC 68 ms
70,272 KB
testcase_15 AC 41 ms
52,224 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 42 ms
51,968 KB
testcase_18 AC 57 ms
63,488 KB
testcase_19 WA -
testcase_20 TLE -
testcase_21 AC 86 ms
67,584 KB
testcase_22 AC 87 ms
68,224 KB
testcase_23 WA -
testcase_24 AC 86 ms
67,456 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 88 ms
67,968 KB
testcase_28 WA -
testcase_29 AC 89 ms
68,096 KB
testcase_30 WA -
testcase_31 AC 89 ms
68,608 KB
testcase_32 WA -
testcase_33 TLE -
testcase_34 WA -
testcase_35 AC 88 ms
67,840 KB
testcase_36 AC 42 ms
52,352 KB
testcase_37 AC 41 ms
51,840 KB
testcase_38 AC 41 ms
52,096 KB
testcase_39 AC 41 ms
52,480 KB
testcase_40 AC 46 ms
52,096 KB
testcase_41 AC 39 ms
52,096 KB
testcase_42 AC 39 ms
51,968 KB
testcase_43 AC 170 ms
77,696 KB
testcase_44 AC 499 ms
78,592 KB
testcase_45 AC 86 ms
197,888 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,h):
            for yy in range(y,w):
                if g[i][j] == '.':
                    continue
                if x ==xx and y == yy:
                    continue
                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