結果

問題 No.179 塗り分け
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-15 17:00:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,293 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-09-26 04:39:50
合計ジャッジ時間 11,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,296 KB
testcase_01 AC 43 ms
56,064 KB
testcase_02 AC 46 ms
55,296 KB
testcase_03 AC 44 ms
55,680 KB
testcase_04 AC 43 ms
56,192 KB
testcase_05 AC 117 ms
77,044 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 195 ms
78,208 KB
testcase_09 AC 319 ms
79,040 KB
testcase_10 AC 56 ms
69,120 KB
testcase_11 AC 56 ms
69,248 KB
testcase_12 AC 562 ms
80,036 KB
testcase_13 AC 54 ms
65,536 KB
testcase_14 AC 55 ms
66,688 KB
testcase_15 AC 43 ms
55,168 KB
testcase_16 AC 42 ms
55,424 KB
testcase_17 AC 41 ms
55,696 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 424 ms
79,232 KB
testcase_21 AC 368 ms
79,104 KB
testcase_22 AC 495 ms
79,916 KB
testcase_23 AC 162 ms
77,604 KB
testcase_24 AC 357 ms
79,440 KB
testcase_25 AC 60 ms
70,400 KB
testcase_26 AC 252 ms
78,164 KB
testcase_27 AC 441 ms
79,232 KB
testcase_28 AC 321 ms
78,208 KB
testcase_29 AC 573 ms
79,104 KB
testcase_30 AC 431 ms
78,848 KB
testcase_31 AC 653 ms
80,768 KB
testcase_32 AC 157 ms
77,720 KB
testcase_33 AC 661 ms
80,096 KB
testcase_34 WA -
testcase_35 AC 633 ms
80,180 KB
testcase_36 AC 43 ms
55,680 KB
testcase_37 AC 43 ms
55,808 KB
testcase_38 AC 42 ms
55,808 KB
testcase_39 AC 41 ms
55,808 KB
testcase_40 AC 51 ms
63,616 KB
testcase_41 AC 43 ms
55,424 KB
testcase_42 AC 50 ms
63,488 KB
testcase_43 AC 76 ms
76,672 KB
testcase_44 AC 130 ms
76,928 KB
testcase_45 AC 60 ms
70,784 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,S):
    
    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
                elif (T[i][j]==2):
                    b += 1
                else:
                    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,S):
            print('YES')
            exit()
            
for i in range(H):
    S[i].reverse()
    
for x in range(H):
    for y in range(W):
        if x+y==0:
            continue
        if check(x,y,S):
            print('YES')
            exit()
print('NO')
0