結果

問題 No.179 塗り分け
ユーザー todo_2marikotodo_2mariko
提出日時 2019-03-12 22:36:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-23 15:54:35
合計ジャッジ時間 36,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 WA -
testcase_03 AC 27 ms
11,008 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 WA -
testcase_07 AC 26 ms
11,008 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 192 ms
10,880 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 211 ms
11,008 KB
testcase_19 AC 219 ms
11,008 KB
testcase_20 AC 29 ms
11,008 KB
testcase_21 AC 27 ms
11,008 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,866 ms
10,880 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2,535 ms
10,880 KB
testcase_28 WA -
testcase_29 AC 1,789 ms
10,880 KB
testcase_30 WA -
testcase_31 AC 1,827 ms
10,880 KB
testcase_32 AC 2,960 ms
10,880 KB
testcase_33 AC 1,992 ms
11,008 KB
testcase_34 WA -
testcase_35 AC 988 ms
10,880 KB
testcase_36 AC 27 ms
10,752 KB
testcase_37 AC 27 ms
10,752 KB
testcase_38 AC 27 ms
10,880 KB
testcase_39 AC 27 ms
10,752 KB
testcase_40 AC 28 ms
10,880 KB
testcase_41 AC 28 ms
10,752 KB
testcase_42 AC 28 ms
10,880 KB
testcase_43 AC 57 ms
10,880 KB
testcase_44 AC 143 ms
10,880 KB
testcase_45 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split(' '))
sq = [input().strip() for i in range(a)]
sq2 = [c for k in sq for c in k]
ans = 'NO'

m_l = 0
m_r = 0
for c in sq:
    if '#' in c:
        m_l = max(c.index('#'), m_l)
        m_r = max(c[::-1].index('#'), m_r)

if ('#' not in sq2) or sq2.count('#') % 2 == 1:
    print('NO')
    exit()
 
for h in range(a):
    for w in range(-m_l, m_r+1):
        sq3 = list('0'*len(sq2)) 
        for t in range(len(sq2)):
            if sq[t//b][t%b]=='#' and 0 < t%b+w < b and 0 < t//b+h < a:
                if sq[t//b+h][t%b+w] == '#' and sq3[t]=='0':
                    sq3[t] = '1'
                    sq3[t+w+(b*h)] = '1'

        if sq2.count('#') == sq3.count('1'):
            ans = 'YES'
            break

print(ans)
0