結果

問題 No.179 塗り分け
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-15 16:56:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,026 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-09-26 04:39:28
合計ジャッジ時間 9,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,552 KB
testcase_01 AC 52 ms
55,424 KB
testcase_02 AC 51 ms
55,168 KB
testcase_03 AC 50 ms
55,296 KB
testcase_04 AC 51 ms
55,424 KB
testcase_05 AC 119 ms
76,928 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 232 ms
77,952 KB
testcase_09 WA -
testcase_10 AC 71 ms
69,248 KB
testcase_11 AC 70 ms
68,736 KB
testcase_12 AC 364 ms
78,208 KB
testcase_13 AC 63 ms
64,256 KB
testcase_14 AC 65 ms
66,176 KB
testcase_15 AC 50 ms
55,040 KB
testcase_16 AC 51 ms
55,552 KB
testcase_17 AC 51 ms
55,424 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 291 ms
77,952 KB
testcase_21 AC 254 ms
77,824 KB
testcase_22 AC 319 ms
78,336 KB
testcase_23 AC 184 ms
77,312 KB
testcase_24 AC 249 ms
78,208 KB
testcase_25 AC 76 ms
70,912 KB
testcase_26 WA -
testcase_27 AC 308 ms
78,592 KB
testcase_28 WA -
testcase_29 AC 376 ms
78,080 KB
testcase_30 WA -
testcase_31 AC 430 ms
78,336 KB
testcase_32 AC 185 ms
77,312 KB
testcase_33 AC 424 ms
78,848 KB
testcase_34 WA -
testcase_35 AC 416 ms
78,464 KB
testcase_36 AC 51 ms
55,808 KB
testcase_37 AC 52 ms
55,808 KB
testcase_38 AC 51 ms
55,424 KB
testcase_39 AC 51 ms
56,064 KB
testcase_40 AC 52 ms
55,936 KB
testcase_41 AC 51 ms
55,296 KB
testcase_42 AC 52 ms
55,936 KB
testcase_43 AC 99 ms
76,672 KB
testcase_44 AC 129 ms
77,056 KB
testcase_45 AC 82 ms
72,192 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
                    
    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