結果

問題 No.179 塗り分け
ユーザー るこーそーるこーそー
提出日時 2024-09-24 19:40:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 3,000 ms
コード長 750 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 77,028 KB
最終ジャッジ日時 2024-09-24 19:40:45
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,444 KB
testcase_01 AC 37 ms
52,896 KB
testcase_02 AC 38 ms
53,068 KB
testcase_03 AC 37 ms
53,148 KB
testcase_04 AC 38 ms
52,808 KB
testcase_05 AC 72 ms
76,348 KB
testcase_06 AC 50 ms
69,444 KB
testcase_07 AC 38 ms
52,448 KB
testcase_08 AC 118 ms
76,284 KB
testcase_09 AC 104 ms
76,604 KB
testcase_10 AC 79 ms
76,268 KB
testcase_11 AC 76 ms
76,284 KB
testcase_12 AC 109 ms
76,536 KB
testcase_13 AC 40 ms
53,680 KB
testcase_14 AC 43 ms
59,476 KB
testcase_15 AC 38 ms
53,484 KB
testcase_16 AC 37 ms
53,428 KB
testcase_17 AC 37 ms
53,096 KB
testcase_18 AC 80 ms
76,124 KB
testcase_19 AC 80 ms
76,148 KB
testcase_20 AC 117 ms
76,892 KB
testcase_21 AC 139 ms
76,928 KB
testcase_22 AC 202 ms
76,736 KB
testcase_23 AC 75 ms
76,056 KB
testcase_24 AC 116 ms
76,716 KB
testcase_25 AC 80 ms
76,300 KB
testcase_26 AC 87 ms
76,528 KB
testcase_27 AC 109 ms
76,856 KB
testcase_28 AC 80 ms
76,684 KB
testcase_29 AC 129 ms
77,028 KB
testcase_30 AC 101 ms
76,592 KB
testcase_31 AC 114 ms
76,768 KB
testcase_32 AC 101 ms
76,496 KB
testcase_33 AC 127 ms
76,948 KB
testcase_34 AC 93 ms
76,720 KB
testcase_35 AC 122 ms
76,648 KB
testcase_36 AC 38 ms
52,752 KB
testcase_37 AC 39 ms
53,776 KB
testcase_38 AC 38 ms
53,212 KB
testcase_39 AC 37 ms
52,528 KB
testcase_40 AC 39 ms
53,844 KB
testcase_41 AC 37 ms
53,068 KB
testcase_42 AC 38 ms
52,668 KB
testcase_43 AC 53 ms
68,864 KB
testcase_44 AC 72 ms
76,056 KB
testcase_45 AC 48 ms
61,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
S=[list(input()) for _ in range(h)]

if sum(row.count('#') for row in S)==0:
    print('NO')
    exit()
    
for di in range(-h,h):
    for dj in range(-w,w):
        if di==0 and dj==0:continue
        
        ok=True
        mass=[row[:] for row in S]
        for i in range(h):
            for j in range(w):
                if mass[i][j]!='#':continue
                mass[i][j]='R'
                ni,nj=i+di,j+dj
                if 0<=ni<h and 0<=nj<w and mass[ni][nj]=='#':
                    mass[ni][nj]='B'
                else:
                    ok=False
                    break
                
            if not ok:break
        
        if ok:
            print('YES')
            exit()

print('NO')
0