結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 29 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 37 ms
11,136 KB
testcase_06 WA -
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 194 ms
19,840 KB
testcase_11 AC 178 ms
18,816 KB
testcase_12 AC 172 ms
18,816 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 87 ms
13,440 KB
testcase_21 WA -
testcase_22 AC 37 ms
10,880 KB
testcase_23 AC 63 ms
11,904 KB
testcase_24 AC 34 ms
10,880 KB
testcase_25 AC 35 ms
10,880 KB
testcase_26 WA -
testcase_27 AC 58 ms
11,776 KB
testcase_28 WA -
testcase_29 AC 84 ms
12,928 KB
testcase_30 WA -
testcase_31 AC 99 ms
13,824 KB
testcase_32 WA -
testcase_33 AC 102 ms
14,336 KB
testcase_34 WA -
testcase_35 AC 122 ms
15,232 KB
testcase_36 AC 27 ms
10,624 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 29 ms
10,752 KB
testcase_41 WA -
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:
    print('NO')
    exit()

C = Counter(common).most_common()

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