結果

問題 No.179 塗り分け
ユーザー yuuki1036yuuki1036
提出日時 2018-11-07 23:03:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-11-20 20:54:01
合計ジャッジ時間 4,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 41 ms
11,136 KB
testcase_06 WA -
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 216 ms
19,840 KB
testcase_11 AC 194 ms
18,816 KB
testcase_12 AC 192 ms
18,816 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 92 ms
13,440 KB
testcase_21 AC 38 ms
10,880 KB
testcase_22 AC 42 ms
11,008 KB
testcase_23 AC 68 ms
12,032 KB
testcase_24 AC 39 ms
10,880 KB
testcase_25 AC 41 ms
10,880 KB
testcase_26 WA -
testcase_27 AC 66 ms
11,904 KB
testcase_28 WA -
testcase_29 AC 94 ms
13,056 KB
testcase_30 WA -
testcase_31 AC 113 ms
13,952 KB
testcase_32 WA -
testcase_33 AC 117 ms
14,336 KB
testcase_34 WA -
testcase_35 AC 136 ms
15,232 KB
testcase_36 AC 31 ms
10,752 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 30 ms
10,880 KB
testcase_41 AC 31 ms
10,752 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

H, W = map(int,input().split())
M = [input() for i in range(H)]

drct = [(0,1), (1,1), (1,0)]
cnt = 0
common = []

for y in range(H):
    for x in range(W):
        if M[y][x] == '.':
            continue
        cnt += 1
        for i,d in enumerate(drct):
            dy = y
            dx = x
            for j in range(W):
                dy += d[0]
                dx += d[1]
                if dy<=H-1 and dx<=W-1:
                    if M[dy][dx] == '#':
                        f = str(i) + str(j)
                        common.append(f)
                else:
                    break
                
if cnt == 0 or cnt % 2:
    print('NO')
    exit()

C = Counter(common).most_common()

for i in C:
    if i[1] == cnt//2:
        print('YES')
        break
else:
    print('NO')
0