結果

問題 No.179 塗り分け
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-24 23:33:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 3,000 ms
コード長 732 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 76,660 KB
最終ジャッジ日時 2024-07-23 15:15:38
合計ジャッジ時間 3,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,300 KB
testcase_01 AC 36 ms
52,448 KB
testcase_02 AC 37 ms
53,572 KB
testcase_03 AC 35 ms
52,128 KB
testcase_04 AC 37 ms
53,008 KB
testcase_05 AC 36 ms
53,228 KB
testcase_06 AC 36 ms
53,820 KB
testcase_07 AC 40 ms
58,624 KB
testcase_08 AC 47 ms
62,948 KB
testcase_09 AC 50 ms
62,416 KB
testcase_10 AC 45 ms
61,740 KB
testcase_11 AC 44 ms
62,108 KB
testcase_12 AC 74 ms
76,172 KB
testcase_13 AC 38 ms
53,556 KB
testcase_14 AC 38 ms
53,152 KB
testcase_15 AC 37 ms
52,356 KB
testcase_16 AC 38 ms
52,936 KB
testcase_17 AC 38 ms
53,228 KB
testcase_18 AC 54 ms
64,244 KB
testcase_19 AC 50 ms
64,460 KB
testcase_20 AC 43 ms
60,096 KB
testcase_21 AC 41 ms
59,216 KB
testcase_22 AC 69 ms
70,868 KB
testcase_23 AC 49 ms
61,764 KB
testcase_24 AC 71 ms
68,828 KB
testcase_25 AC 48 ms
63,352 KB
testcase_26 AC 54 ms
66,184 KB
testcase_27 AC 83 ms
76,660 KB
testcase_28 AC 54 ms
65,920 KB
testcase_29 AC 85 ms
76,184 KB
testcase_30 AC 77 ms
75,788 KB
testcase_31 AC 75 ms
75,968 KB
testcase_32 AC 69 ms
73,888 KB
testcase_33 AC 88 ms
76,628 KB
testcase_34 AC 61 ms
70,116 KB
testcase_35 AC 79 ms
75,936 KB
testcase_36 AC 37 ms
52,620 KB
testcase_37 AC 36 ms
52,868 KB
testcase_38 AC 36 ms
53,008 KB
testcase_39 AC 37 ms
53,724 KB
testcase_40 AC 37 ms
53,036 KB
testcase_41 AC 37 ms
52,260 KB
testcase_42 AC 37 ms
53,372 KB
testcase_43 AC 50 ms
63,356 KB
testcase_44 AC 55 ms
65,200 KB
testcase_45 AC 44 ms
60,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = 0
D = set()
for i in range(h):
    for j in range(w):
        if S[i][j] == "#":
            D.add(i * 1000 + j)

l = len(D)
if l & 1 or not D:
    print("NO")
    exit()
E = sorted(list(D))

for x in range(h):
    for y in range(-w, w):
        tmp = set()
        cnt = 0
        for e in E:
            z = e + x * 1000 + y
            c, d = divmod(z, 1000)
            if e in tmp:
                continue
            elif c < 0 or c > h or d < 0 or d > w:
                break
            elif z in D:
                cnt += 1
                tmp.add(z)
        if l // 2 == cnt:
            print("YES")
            exit()
print("NO")
0