結果

問題 No.179 塗り分け
ユーザー 👑 rin204rin204
提出日時 2022-01-20 09:08:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 3,000 ms
コード長 688 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-02 20:15:44
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
51,712 KB
testcase_01 AC 47 ms
51,712 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 43 ms
52,224 KB
testcase_07 AC 47 ms
57,728 KB
testcase_08 AC 52 ms
57,984 KB
testcase_09 AC 46 ms
57,728 KB
testcase_10 AC 55 ms
60,928 KB
testcase_11 AC 54 ms
60,928 KB
testcase_12 AC 108 ms
76,544 KB
testcase_13 AC 43 ms
51,712 KB
testcase_14 AC 43 ms
52,480 KB
testcase_15 AC 43 ms
52,096 KB
testcase_16 AC 42 ms
52,224 KB
testcase_17 AC 45 ms
51,968 KB
testcase_18 AC 56 ms
61,312 KB
testcase_19 AC 56 ms
61,056 KB
testcase_20 AC 52 ms
59,392 KB
testcase_21 AC 48 ms
57,984 KB
testcase_22 AC 55 ms
61,824 KB
testcase_23 AC 52 ms
59,520 KB
testcase_24 AC 49 ms
58,496 KB
testcase_25 AC 47 ms
57,984 KB
testcase_26 AC 56 ms
58,880 KB
testcase_27 AC 65 ms
65,920 KB
testcase_28 AC 53 ms
60,672 KB
testcase_29 AC 72 ms
73,728 KB
testcase_30 AC 66 ms
67,840 KB
testcase_31 AC 83 ms
76,288 KB
testcase_32 AC 63 ms
65,920 KB
testcase_33 AC 81 ms
75,904 KB
testcase_34 AC 60 ms
64,256 KB
testcase_35 AC 90 ms
75,904 KB
testcase_36 AC 43 ms
51,712 KB
testcase_37 AC 42 ms
51,712 KB
testcase_38 AC 42 ms
51,968 KB
testcase_39 AC 42 ms
51,840 KB
testcase_40 AC 45 ms
52,352 KB
testcase_41 AC 42 ms
51,968 KB
testcase_42 AC 42 ms
51,840 KB
testcase_43 AC 44 ms
52,096 KB
testcase_44 AC 47 ms
53,888 KB
testcase_45 AC 43 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

X = []
Y = []
dic = {}
for i in range(h):
    for j in range(w):
        if S[i][j] == "#":
            dic[i * 100 + j] = len(X)
            X.append(i)
            Y.append(j)
            
l = len(X)
if l % 2 == 1:
    print("NO")
    exit()
    
i = 0
for j in range(i + 1, l):
    di = X[j] - X[i]
    dj = Y[j] - Y[i]
    used = [False] * l
    for k in range(l):
        if used[k]:
            continue
        ni = X[k] + di
        nj = Y[k] + dj
        if ni * 100 + nj not in dic:
            break
        x = dic[ni * 100 + nj]
        used[x] = True
    else:
        print("YES")
        exit()
print("NO")
0