結果

問題 No.179 塗り分け
ユーザー siganaisiganai
提出日時 2022-05-26 16:35:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 3,000 ms
コード長 1,328 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-09-20 15:02:48
合計ジャッジ時間 4,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
64,000 KB
testcase_01 AC 57 ms
63,872 KB
testcase_02 AC 56 ms
64,256 KB
testcase_03 AC 55 ms
64,128 KB
testcase_04 AC 58 ms
64,128 KB
testcase_05 AC 57 ms
64,000 KB
testcase_06 AC 60 ms
64,512 KB
testcase_07 AC 59 ms
64,640 KB
testcase_08 AC 65 ms
65,408 KB
testcase_09 AC 61 ms
65,408 KB
testcase_10 AC 67 ms
67,584 KB
testcase_11 AC 65 ms
67,840 KB
testcase_12 AC 109 ms
78,080 KB
testcase_13 AC 57 ms
63,616 KB
testcase_14 AC 59 ms
64,000 KB
testcase_15 AC 58 ms
64,128 KB
testcase_16 AC 59 ms
63,744 KB
testcase_17 AC 57 ms
63,872 KB
testcase_18 AC 68 ms
69,376 KB
testcase_19 AC 68 ms
69,376 KB
testcase_20 AC 58 ms
65,280 KB
testcase_21 AC 58 ms
65,408 KB
testcase_22 AC 83 ms
77,568 KB
testcase_23 AC 66 ms
68,224 KB
testcase_24 AC 73 ms
73,384 KB
testcase_25 AC 61 ms
66,560 KB
testcase_26 AC 65 ms
68,480 KB
testcase_27 AC 85 ms
77,824 KB
testcase_28 AC 70 ms
69,888 KB
testcase_29 AC 92 ms
77,824 KB
testcase_30 AC 88 ms
77,824 KB
testcase_31 AC 89 ms
77,748 KB
testcase_32 AC 88 ms
77,440 KB
testcase_33 AC 94 ms
78,068 KB
testcase_34 AC 85 ms
77,568 KB
testcase_35 AC 97 ms
77,948 KB
testcase_36 AC 59 ms
64,220 KB
testcase_37 AC 58 ms
64,128 KB
testcase_38 AC 60 ms
64,000 KB
testcase_39 AC 58 ms
63,744 KB
testcase_40 AC 58 ms
64,256 KB
testcase_41 AC 59 ms
63,872 KB
testcase_42 AC 59 ms
64,000 KB
testcase_43 AC 62 ms
66,304 KB
testcase_44 AC 69 ms
71,168 KB
testcase_45 AC 59 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools

mod=10 ** 9 + 7

import sys
input = sys.stdin.readline

h,w=map(int,input().split())
s = [input().rstrip() for _ in range(h)]
li = []
for i in range(h):
    for j in range(w):
        if s[i][j] == '#':
            li.append((i,j))
if len(li) % 2:
    print('NO')
else:
    for i in range(1,len(li)):
        px = li[i][0] - li[0][0]
        py = li[i][1] - li[0][1]
        ns = [[0] * w for _ in range(h)]
        flg = 0
        for j in range(h):
            for k in range(w):
                if s[j][k] == '#':
                    if ns[j][k]:
                        continue
                    ns[j][k] = 1
                    if 0 <= j + px < h and 0 <= k + py < w:
                        if s[j + px][k + py] == '#' and ns[j + px][k + py] == 0:
                            ns[j + px][k + py] = 1
                        else:
                            flg = 1
                            break
                    else:
                        flg = 1
                        break
            if flg:
                break
        if not flg:
            print('YES')
            exit()
    print('NO')
0