結果

問題 No.179 塗り分け
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-24 22:25:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,156 KB
最終ジャッジ日時 2024-07-03 20:23:37
合計ジャッジ時間 5,936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,116 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 37 ms
52,824 KB
testcase_03 AC 38 ms
52,468 KB
testcase_04 AC 37 ms
52,620 KB
testcase_05 AC 38 ms
53,256 KB
testcase_06 AC 44 ms
61,092 KB
testcase_07 AC 40 ms
58,852 KB
testcase_08 AC 45 ms
61,776 KB
testcase_09 AC 46 ms
62,084 KB
testcase_10 AC 50 ms
64,460 KB
testcase_11 AC 50 ms
63,864 KB
testcase_12 AC 557 ms
76,060 KB
testcase_13 AC 37 ms
53,304 KB
testcase_14 AC 38 ms
52,884 KB
testcase_15 AC 37 ms
53,880 KB
testcase_16 AC 36 ms
52,976 KB
testcase_17 AC 37 ms
52,736 KB
testcase_18 AC 63 ms
72,152 KB
testcase_19 AC 60 ms
70,932 KB
testcase_20 AC 41 ms
58,900 KB
testcase_21 AC 42 ms
58,788 KB
testcase_22 AC 80 ms
69,652 KB
testcase_23 AC 50 ms
64,268 KB
testcase_24 AC 85 ms
68,004 KB
testcase_25 AC 46 ms
61,556 KB
testcase_26 AC 69 ms
67,848 KB
testcase_27 AC 205 ms
75,836 KB
testcase_28 AC 68 ms
70,688 KB
testcase_29 AC 320 ms
76,156 KB
testcase_30 AC 190 ms
75,948 KB
testcase_31 AC 437 ms
76,008 KB
testcase_32 AC 159 ms
75,940 KB
testcase_33 AC 383 ms
75,944 KB
testcase_34 AC 144 ms
75,932 KB
testcase_35 AC 474 ms
75,708 KB
testcase_36 AC 37 ms
52,336 KB
testcase_37 AC 37 ms
52,812 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 36 ms
52,952 KB
testcase_41 AC 35 ms
52,400 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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
            if e in tmp:
                continue
            elif z in D:
                cnt += 1
                tmp.add(z)
        #print(z, tmp)
        if l // 2 == cnt:
            print("YES")
            exit()
print("NO")
0