結果

問題 No.179 塗り分け
ユーザー FromBooskaFromBooska
提出日時 2024-02-23 18:50:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,189 ms / 3,000 ms
コード長 1,010 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 90,452 KB
最終ジャッジ日時 2024-09-29 05:14:46
合計ジャッジ時間 24,184 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,260 KB
testcase_01 AC 38 ms
52,504 KB
testcase_02 AC 38 ms
52,756 KB
testcase_03 AC 38 ms
52,420 KB
testcase_04 AC 47 ms
62,032 KB
testcase_05 AC 153 ms
75,924 KB
testcase_06 AC 123 ms
76,224 KB
testcase_07 AC 44 ms
59,692 KB
testcase_08 AC 49 ms
65,172 KB
testcase_09 AC 50 ms
64,372 KB
testcase_10 AC 2,189 ms
90,452 KB
testcase_11 AC 1,817 ms
86,408 KB
testcase_12 AC 1,808 ms
86,872 KB
testcase_13 AC 38 ms
53,148 KB
testcase_14 AC 38 ms
52,660 KB
testcase_15 AC 39 ms
52,120 KB
testcase_16 AC 39 ms
52,132 KB
testcase_17 AC 39 ms
51,896 KB
testcase_18 AC 1,017 ms
80,256 KB
testcase_19 AC 940 ms
79,816 KB
testcase_20 AC 952 ms
79,824 KB
testcase_21 AC 231 ms
75,952 KB
testcase_22 AC 238 ms
76,056 KB
testcase_23 AC 634 ms
77,384 KB
testcase_24 AC 193 ms
75,440 KB
testcase_25 AC 211 ms
75,920 KB
testcase_26 AC 433 ms
76,576 KB
testcase_27 AC 677 ms
77,112 KB
testcase_28 AC 945 ms
79,448 KB
testcase_29 AC 1,019 ms
79,844 KB
testcase_30 AC 1,133 ms
81,136 KB
testcase_31 AC 1,245 ms
81,916 KB
testcase_32 AC 1,251 ms
82,064 KB
testcase_33 AC 1,217 ms
81,496 KB
testcase_34 AC 1,445 ms
83,556 KB
testcase_35 AC 1,475 ms
83,080 KB
testcase_36 AC 37 ms
52,392 KB
testcase_37 AC 36 ms
53,292 KB
testcase_38 AC 38 ms
52,620 KB
testcase_39 AC 37 ms
53,360 KB
testcase_40 AC 39 ms
52,612 KB
testcase_41 AC 37 ms
52,376 KB
testcase_42 AC 38 ms
52,136 KB
testcase_43 AC 82 ms
76,148 KB
testcase_44 AC 176 ms
75,884 KB
testcase_45 AC 61 ms
68,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# WA出た、たとえばS['.#', '#.']のときに変化幅はマイナスになるな
# 1WA、少なくとも1マスは塗る、つまり全白ならNO

H, W = map(int, input().split())
S = []
dots = []
for i in range(H):
    temp = list(input())
    S.append(temp)
    for j in range(W):
        if temp[j] == '#':
            dots.append((i, j))

#print(S)
#print(dots)

dots_set = set(dots)
ans = 'NO'

for di in range(0, H):
    for dj in range(-W+1, W):
        if di==0 and dj==0:
            continue
        covered = set()
        test = True
        for i, j in dots:
            if (i, j) in covered:
                continue
            #print('i', i, 'j', j, (i+di, j+dj) in dots_set, test)
            if (i+di, j+dj) in dots_set:
                covered.add((i+di, j+dj))
            else:
                test = False
            covered.add((i, j))
        #print('di', di, 'dj', dj, covered, test)
        if test == True:
            ans = 'YES'
if len(dots) == 0:
    ans = 'NO'
print(ans)
0