結果

問題 No.179 塗り分け
ユーザー MitI_7MitI_7
提出日時 2015-12-27 14:13:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 789 ms / 3,000 ms
コード長 1,132 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-23 14:33:39
合計ジャッジ時間 6,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 37 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 789 ms
10,880 KB
testcase_08 AC 262 ms
10,880 KB
testcase_09 AC 261 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 267 ms
10,880 KB
testcase_13 AC 43 ms
10,752 KB
testcase_14 AC 72 ms
10,880 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 36 ms
10,880 KB
testcase_19 AC 35 ms
11,008 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 465 ms
10,880 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 277 ms
10,880 KB
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 63 ms
10,880 KB
testcase_27 AC 259 ms
10,880 KB
testcase_28 AC 38 ms
10,880 KB
testcase_29 AC 263 ms
10,880 KB
testcase_30 AC 125 ms
11,008 KB
testcase_31 AC 269 ms
10,880 KB
testcase_32 AC 94 ms
11,008 KB
testcase_33 AC 265 ms
11,008 KB
testcase_34 AC 74 ms
11,008 KB
testcase_35 AC 263 ms
11,008 KB
testcase_36 AC 43 ms
10,752 KB
testcase_37 AC 30 ms
10,752 KB
testcase_38 AC 36 ms
10,752 KB
testcase_39 AC 34 ms
10,752 KB
testcase_40 AC 37 ms
10,752 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 36 ms
10,880 KB
testcase_43 AC 82 ms
10,752 KB
testcase_44 AC 127 ms
10,880 KB
testcase_45 AC 50 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def func(d, r, field):
    find = False
    for y in range(len(field)):
        ny = y + d
        if not (0 <= ny < len(field)):
            continue
        for x in range(len(field[y])):
            if field[y][x] == '#':
                nx = x + r
                if 0 <= nx < len(field[y]) and field[ny][nx] == '#':
                    find = True
                    field[y][x] = 0
                    field[ny][nx] = 1
                else:
                    return False

    for line in field:
        if '#' in line:
            return False

    return find


def main():
    h, w = map(int, input().split())
    field = []
    num_of_sharps = 0
    for _ in range(h):
        line = list(input())
        field.append(line)
        num_of_sharps += line.count('#')

    if num_of_sharps % 2 != 0:
        print("NO")
        return

    for i in range(50):
        for j in range(-50, 50):
            if i == 0 and j <= 0:
                continue

            if func(i, j, [[i for i in j] for j in field]):
                print("YES")
                return
    print("NO")

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