結果

問題 No.179 塗り分け
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-15 16:57:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,062 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-09-26 04:39:38
合計ジャッジ時間 10,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 49 ms
55,552 KB
testcase_02 WA -
testcase_03 AC 49 ms
55,296 KB
testcase_04 WA -
testcase_05 AC 126 ms
77,156 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 230 ms
77,824 KB
testcase_09 WA -
testcase_10 AC 69 ms
68,992 KB
testcase_11 AC 67 ms
68,736 KB
testcase_12 AC 342 ms
78,080 KB
testcase_13 AC 63 ms
64,512 KB
testcase_14 AC 63 ms
65,920 KB
testcase_15 AC 48 ms
55,296 KB
testcase_16 AC 49 ms
55,680 KB
testcase_17 AC 49 ms
55,040 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 308 ms
78,464 KB
testcase_21 AC 256 ms
78,336 KB
testcase_22 AC 358 ms
78,336 KB
testcase_23 WA -
testcase_24 AC 256 ms
78,080 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 323 ms
78,336 KB
testcase_28 WA -
testcase_29 AC 391 ms
78,080 KB
testcase_30 WA -
testcase_31 AC 430 ms
78,336 KB
testcase_32 WA -
testcase_33 AC 427 ms
78,592 KB
testcase_34 WA -
testcase_35 AC 400 ms
78,848 KB
testcase_36 AC 49 ms
55,424 KB
testcase_37 AC 48 ms
55,424 KB
testcase_38 AC 46 ms
55,680 KB
testcase_39 AC 48 ms
55,296 KB
testcase_40 AC 49 ms
55,936 KB
testcase_41 AC 47 ms
55,424 KB
testcase_42 AC 47 ms
55,936 KB
testcase_43 AC 91 ms
77,056 KB
testcase_44 AC 124 ms
77,056 KB
testcase_45 AC 90 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

H,W = map(int,input().split())
S = [list(input())[:-1] for _ in range(H)]

for i in range(H):
    for j in range(W):
        S[i][j]=int(S[i][j]=='#')
        
        

def check(x,y):
    
    T = [[0]*(2*W) for _ in range(2*H)]
    for i in range(H):
        for j in range(W):
            T[i][j] += S[i][j]
            T[i+x][j+y] += S[i][j]
            
            
    flg = True
    a = 0
    b = 0
    for i in range(H):
        for j in range(W):
            if (S[i][j]==1):
                if T[i][j]==1:
                    a += 1
                    if T[i+x][j+y]!=2:
                        flg = False
                if (T[i][j]==2):
                    b += 1
            elif T[i][j]!=0:
                flg = False
    return flg&(a==b)
    
for x in range(H):
    for y in range(W):
        if x+y==0:
            continue
        if check(x,y):
            print('YES')
            exit()
print('NO')
0