結果

問題 No.179 塗り分け
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-24 19:56:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,388 KB
最終ジャッジ日時 2024-07-02 08:49:05
合計ジャッジ時間 16,115 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 60 ms
62,464 KB
testcase_07 AC 46 ms
57,644 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2,350 ms
75,668 KB
testcase_11 AC 1,850 ms
75,640 KB
testcase_12 AC 1,861 ms
75,660 KB
testcase_13 WA -
testcase_14 AC 40 ms
52,096 KB
testcase_15 AC 39 ms
51,756 KB
testcase_16 AC 39 ms
51,968 KB
testcase_17 AC 39 ms
52,480 KB
testcase_18 AC 484 ms
76,288 KB
testcase_19 AC 348 ms
75,476 KB
testcase_20 AC 44 ms
58,496 KB
testcase_21 AC 42 ms
58,368 KB
testcase_22 AC 69 ms
64,896 KB
testcase_23 AC 185 ms
72,960 KB
testcase_24 AC 61 ms
62,848 KB
testcase_25 AC 70 ms
66,304 KB
testcase_26 AC 106 ms
68,992 KB
testcase_27 AC 188 ms
71,424 KB
testcase_28 AC 364 ms
75,904 KB
testcase_29 AC 446 ms
75,616 KB
testcase_30 AC 587 ms
75,732 KB
testcase_31 AC 663 ms
75,776 KB
testcase_32 AC 741 ms
76,388 KB
testcase_33 AC 721 ms
75,708 KB
testcase_34 AC 967 ms
76,044 KB
testcase_35 AC 1,004 ms
75,792 KB
testcase_36 AC 39 ms
52,224 KB
testcase_37 AC 39 ms
51,712 KB
testcase_38 AC 41 ms
51,968 KB
testcase_39 AC 41 ms
52,096 KB
testcase_40 AC 40 ms
51,968 KB
testcase_41 AC 38 ms
52,224 KB
testcase_42 AC 38 ms
51,948 KB
testcase_43 AC 50 ms
60,928 KB
testcase_44 AC 71 ms
63,488 KB
testcase_45 AC 48 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = 0
D = set()
for ss in S:
    for s in ss:
        cnt += 1
        if s == "#":
            D.add(cnt)

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

flg = False
m = max(D)
hw = h * w // 2 + 1
for i in range(1, min(m, hw)):
    cnt = 0
    tmp = []
    for d in D:
        if d in tmp:
            continue
        elif d + i in D:
            cnt += 1
            tmp.append(d + i)
    #print(i, cnt, tmp)
    if l // 2 == cnt:
        #print(i,cnt,tmp)
        flg = True
print("YES" if flg else "NO")

0