結果

問題 No.179 塗り分け
ユーザー しらっ亭しらっ亭
提出日時 2015-07-28 03:31:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-02 14:38:26
合計ジャッジ時間 9,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 69 ms
10,496 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 286 ms
10,496 KB
testcase_09 WA -
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 419 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 WA -
testcase_18 AC 45 ms
10,496 KB
testcase_19 AC 46 ms
10,624 KB
testcase_20 AC 409 ms
10,624 KB
testcase_21 AC 332 ms
10,752 KB
testcase_22 AC 321 ms
10,496 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 366 ms
10,624 KB
testcase_25 AC 30 ms
10,496 KB
testcase_26 WA -
testcase_27 AC 426 ms
10,752 KB
testcase_28 WA -
testcase_29 AC 452 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 469 ms
10,752 KB
testcase_32 AC 236 ms
10,624 KB
testcase_33 AC 466 ms
10,496 KB
testcase_34 WA -
testcase_35 AC 471 ms
10,624 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 29 ms
10,496 KB
testcase_38 AC 29 ms
10,624 KB
testcase_39 AC 29 ms
10,752 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 30 ms
10,496 KB
testcase_43 AC 35 ms
10,752 KB
testcase_44 AC 67 ms
10,752 KB
testcase_45 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    H, W = list(map(int, input().split()))
    S = [0] * H
    for i in range(H):
        s = input()
        S[i] = sum(1 << i for i in range(W) if s[i] == '#')

    for dy in range(H):
        for dx in range(W):
            bs = list(S)
            for y in range(H - dy):
                for x in range(W - dx):
                    x1 = 1 << x
                    x1dx = x1 << dx
                    if bs[y] & x1:
                        bs[y] -= x1
                        bs[y + dy] -= x1dx
            if all(b == 0 for b in bs):
                return True

    return False


def main():
    print('YES' if solve() else 'NO')


if __name__ == '__main__':
    main()
0