結果

問題 No.179 塗り分け
ユーザー るこーそーるこーそー
提出日時 2024-09-24 19:39:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 76,888 KB
最終ジャッジ日時 2024-09-24 19:40:01
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,340 KB
testcase_01 AC 37 ms
52,012 KB
testcase_02 AC 37 ms
52,540 KB
testcase_03 AC 38 ms
52,360 KB
testcase_04 AC 39 ms
52,732 KB
testcase_05 AC 74 ms
76,484 KB
testcase_06 AC 50 ms
67,804 KB
testcase_07 WA -
testcase_08 AC 95 ms
76,612 KB
testcase_09 AC 105 ms
76,116 KB
testcase_10 AC 76 ms
76,384 KB
testcase_11 AC 79 ms
75,632 KB
testcase_12 AC 104 ms
76,408 KB
testcase_13 AC 39 ms
54,060 KB
testcase_14 AC 42 ms
58,800 KB
testcase_15 AC 37 ms
52,472 KB
testcase_16 AC 37 ms
52,616 KB
testcase_17 WA -
testcase_18 AC 77 ms
76,148 KB
testcase_19 AC 80 ms
76,276 KB
testcase_20 AC 111 ms
76,576 KB
testcase_21 AC 134 ms
76,608 KB
testcase_22 AC 175 ms
76,572 KB
testcase_23 AC 72 ms
76,284 KB
testcase_24 AC 140 ms
76,828 KB
testcase_25 AC 75 ms
76,356 KB
testcase_26 AC 84 ms
76,084 KB
testcase_27 AC 109 ms
76,488 KB
testcase_28 AC 80 ms
75,884 KB
testcase_29 AC 125 ms
76,584 KB
testcase_30 AC 96 ms
76,704 KB
testcase_31 AC 108 ms
76,436 KB
testcase_32 AC 90 ms
76,376 KB
testcase_33 AC 119 ms
76,452 KB
testcase_34 AC 91 ms
76,212 KB
testcase_35 AC 129 ms
76,888 KB
testcase_36 AC 37 ms
52,024 KB
testcase_37 AC 37 ms
52,992 KB
testcase_38 AC 38 ms
52,136 KB
testcase_39 AC 37 ms
53,056 KB
testcase_40 AC 39 ms
53,792 KB
testcase_41 AC 39 ms
52,940 KB
testcase_42 AC 39 ms
53,216 KB
testcase_43 AC 53 ms
68,704 KB
testcase_44 AC 74 ms
76,096 KB
testcase_45 AC 47 ms
62,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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