結果

問題 No.179 塗り分け
ユーザー Woo-CieWoo-Cie
提出日時 2019-03-23 11:36:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 958 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,616 KB
最終ジャッジ日時 2024-09-22 03:49:41
合計ジャッジ時間 47,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
44,616 KB
testcase_01 AC 509 ms
44,088 KB
testcase_02 AC 513 ms
44,464 KB
testcase_03 AC 507 ms
44,216 KB
testcase_04 AC 503 ms
44,340 KB
testcase_05 AC 627 ms
44,348 KB
testcase_06 AC 509 ms
44,348 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 509 ms
44,588 KB
testcase_11 AC 506 ms
44,220 KB
testcase_12 AC 2,138 ms
44,356 KB
testcase_13 AC 508 ms
44,088 KB
testcase_14 AC 504 ms
43,964 KB
testcase_15 AC 507 ms
44,336 KB
testcase_16 AC 503 ms
43,964 KB
testcase_17 AC 507 ms
44,468 KB
testcase_18 AC 570 ms
44,348 KB
testcase_19 AC 563 ms
44,344 KB
testcase_20 AC 1,708 ms
44,092 KB
testcase_21 AC 1,485 ms
44,084 KB
testcase_22 AC 1,499 ms
44,352 KB
testcase_23 AC 516 ms
44,472 KB
testcase_24 AC 1,469 ms
44,340 KB
testcase_25 AC 539 ms
43,952 KB
testcase_26 WA -
testcase_27 AC 1,699 ms
44,340 KB
testcase_28 WA -
testcase_29 AC 1,877 ms
44,084 KB
testcase_30 WA -
testcase_31 AC 1,926 ms
44,212 KB
testcase_32 AC 1,305 ms
43,828 KB
testcase_33 AC 2,007 ms
44,348 KB
testcase_34 WA -
testcase_35 AC 2,076 ms
43,956 KB
testcase_36 AC 524 ms
44,340 KB
testcase_37 AC 504 ms
43,956 KB
testcase_38 AC 502 ms
43,948 KB
testcase_39 AC 502 ms
44,076 KB
testcase_40 AC 499 ms
44,476 KB
testcase_41 AC 499 ms
44,312 KB
testcase_42 AC 499 ms
44,212 KB
testcase_43 AC 528 ms
44,084 KB
testcase_44 AC 651 ms
44,476 KB
testcase_45 AC 504 ms
43,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8-*-
import numpy as np
if __name__ == '__main__':
    h, w = map(int, input().split(" "))
    l = []
    for i in range(h):
        l.append(list(input()))
    l = np.array(l)
    for i in range(0, h//2+1):
        for j in range(0,w//2+1):
            if i == 0 and j == 0:
                continue
            tl = np.copy(l)
            flag = True
            for a in range(h):
                for b in range(w):
                    if tl[a, b] == "#":
                        if a+i >= h:
                            flag = False
                        elif b+j >= w:
                            flag = False
                        elif tl[a+i, b+j] == "#":
                            tl[a,b] = "."
                            tl[a+i, b+j] = "."
                        else:
                            flag = False
            if flag:
                print("YES")
                exit()
    print("NO")

0