結果

問題 No.179 塗り分け
ユーザー Woo-CieWoo-Cie
提出日時 2019-03-23 11:47:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,565 ms / 3,000 ms
コード長 1,004 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,248 KB
最終ジャッジ日時 2024-07-23 14:57:35
合計ジャッジ時間 28,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
44,120 KB
testcase_01 AC 518 ms
44,124 KB
testcase_02 AC 495 ms
43,992 KB
testcase_03 AC 502 ms
44,248 KB
testcase_04 AC 501 ms
43,868 KB
testcase_05 AC 520 ms
44,244 KB
testcase_06 AC 498 ms
43,864 KB
testcase_07 AC 498 ms
43,992 KB
testcase_08 AC 524 ms
43,988 KB
testcase_09 AC 622 ms
43,736 KB
testcase_10 AC 511 ms
44,248 KB
testcase_11 AC 502 ms
43,988 KB
testcase_12 AC 673 ms
43,608 KB
testcase_13 AC 504 ms
43,864 KB
testcase_14 AC 499 ms
43,488 KB
testcase_15 AC 495 ms
43,996 KB
testcase_16 AC 498 ms
43,744 KB
testcase_17 AC 500 ms
43,988 KB
testcase_18 AC 500 ms
44,248 KB
testcase_19 AC 504 ms
43,860 KB
testcase_20 AC 564 ms
43,992 KB
testcase_21 AC 1,100 ms
43,612 KB
testcase_22 AC 2,565 ms
43,604 KB
testcase_23 AC 508 ms
43,612 KB
testcase_24 AC 639 ms
43,992 KB
testcase_25 AC 501 ms
44,128 KB
testcase_26 AC 513 ms
43,612 KB
testcase_27 AC 531 ms
43,616 KB
testcase_28 AC 498 ms
43,992 KB
testcase_29 AC 528 ms
43,608 KB
testcase_30 AC 526 ms
43,872 KB
testcase_31 AC 553 ms
43,868 KB
testcase_32 AC 507 ms
43,608 KB
testcase_33 AC 536 ms
44,244 KB
testcase_34 AC 510 ms
43,736 KB
testcase_35 AC 529 ms
43,864 KB
testcase_36 AC 502 ms
43,744 KB
testcase_37 AC 497 ms
43,716 KB
testcase_38 AC 501 ms
43,616 KB
testcase_39 AC 495 ms
43,640 KB
testcase_40 AC 510 ms
43,612 KB
testcase_41 AC 505 ms
43,992 KB
testcase_42 AC 495 ms
43,608 KB
testcase_43 AC 495 ms
43,616 KB
testcase_44 AC 505 ms
43,868 KB
testcase_45 AC 502 ms
43,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8-*-
import numpy as np
def f(i, j, h, w, tl):
    for a in range(h):
        for b in range(w):
            if tl[a, b] == "#":
                if a+i >= h:
                    return False
                elif b+j >= w:
                    return False
                elif b+j < 0:
                    return False
                elif tl[a+i, b+j] == "#":
                    tl[a,b] = "."
                    tl[a+i, b+j] = "."
                else:
                    return False
    return True

if __name__ == '__main__':
    h, w = map(int, input().split(" "))
    l = []
    for i in range(h):
        l.append(list(input()))
    l = np.array(l)
    if not "#" in l:
        print("NO")
        exit()
    for i in range(h):
        for j in range(-w+1, w):
            if i == 0 and j == 0:
                continue
            flag = f(i, j, h, w, np.copy(l))
            if flag:
                print("YES")
                exit()
    print("NO")
0