結果

問題 No.179 塗り分け
ユーザー FromBooskaFromBooska
提出日時 2024-02-23 18:47:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 910 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 91,008 KB
最終ジャッジ日時 2024-09-29 05:14:22
合計ジャッジ時間 24,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,968 KB
testcase_01 AC 37 ms
53,128 KB
testcase_02 AC 39 ms
53,316 KB
testcase_03 AC 38 ms
52,772 KB
testcase_04 AC 46 ms
61,580 KB
testcase_05 AC 151 ms
75,860 KB
testcase_06 AC 121 ms
75,944 KB
testcase_07 WA -
testcase_08 AC 51 ms
64,552 KB
testcase_09 AC 51 ms
64,184 KB
testcase_10 AC 2,242 ms
91,008 KB
testcase_11 AC 1,822 ms
86,944 KB
testcase_12 AC 1,812 ms
87,480 KB
testcase_13 AC 37 ms
52,860 KB
testcase_14 AC 39 ms
52,704 KB
testcase_15 AC 37 ms
53,428 KB
testcase_16 AC 37 ms
53,188 KB
testcase_17 AC 37 ms
52,468 KB
testcase_18 AC 1,020 ms
80,048 KB
testcase_19 AC 952 ms
80,100 KB
testcase_20 AC 952 ms
79,640 KB
testcase_21 AC 227 ms
75,844 KB
testcase_22 AC 234 ms
76,292 KB
testcase_23 AC 625 ms
77,780 KB
testcase_24 AC 191 ms
75,784 KB
testcase_25 AC 209 ms
76,020 KB
testcase_26 AC 430 ms
76,672 KB
testcase_27 AC 681 ms
77,616 KB
testcase_28 AC 936 ms
79,192 KB
testcase_29 AC 1,008 ms
79,724 KB
testcase_30 AC 1,152 ms
80,928 KB
testcase_31 AC 1,272 ms
82,084 KB
testcase_32 AC 1,273 ms
82,420 KB
testcase_33 AC 1,244 ms
81,816 KB
testcase_34 AC 1,460 ms
83,472 KB
testcase_35 AC 1,484 ms
83,380 KB
testcase_36 AC 38 ms
53,004 KB
testcase_37 AC 38 ms
52,676 KB
testcase_38 AC 39 ms
52,760 KB
testcase_39 AC 39 ms
52,800 KB
testcase_40 AC 39 ms
53,668 KB
testcase_41 AC 39 ms
52,452 KB
testcase_42 AC 39 ms
52,332 KB
testcase_43 AC 83 ms
75,968 KB
testcase_44 AC 178 ms
76,256 KB
testcase_45 AC 60 ms
68,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# WA出た、たとえばS['.#', '#.']のときに変化幅はマイナスになるな

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'
print(ans)
0