結果

問題 No.179 塗り分け
ユーザー FromBooskaFromBooska
提出日時 2023-10-15 19:35:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 831 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 76,868 KB
最終ジャッジ日時 2024-09-16 22:06:03
合計ジャッジ時間 4,766 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 67 ms
75,996 KB
testcase_06 AC 56 ms
71,296 KB
testcase_07 WA -
testcase_08 AC 140 ms
76,624 KB
testcase_09 WA -
testcase_10 AC 89 ms
76,032 KB
testcase_11 AC 93 ms
76,160 KB
testcase_12 AC 93 ms
76,112 KB
testcase_13 AC 36 ms
59,008 KB
testcase_14 AC 38 ms
59,904 KB
testcase_15 AC 31 ms
51,456 KB
testcase_16 AC 32 ms
51,968 KB
testcase_17 AC 31 ms
52,224 KB
testcase_18 AC 92 ms
76,520 KB
testcase_19 AC 92 ms
76,536 KB
testcase_20 AC 93 ms
76,288 KB
testcase_21 AC 112 ms
76,280 KB
testcase_22 AC 149 ms
76,676 KB
testcase_23 AC 103 ms
76,340 KB
testcase_24 AC 102 ms
76,416 KB
testcase_25 AC 104 ms
76,412 KB
testcase_26 WA -
testcase_27 AC 107 ms
76,672 KB
testcase_28 WA -
testcase_29 AC 108 ms
76,160 KB
testcase_30 WA -
testcase_31 AC 107 ms
76,160 KB
testcase_32 AC 129 ms
76,868 KB
testcase_33 AC 110 ms
76,336 KB
testcase_34 WA -
testcase_35 AC 109 ms
76,032 KB
testcase_36 AC 32 ms
51,840 KB
testcase_37 AC 31 ms
51,584 KB
testcase_38 AC 32 ms
52,480 KB
testcase_39 AC 31 ms
51,840 KB
testcase_40 AC 34 ms
52,480 KB
testcase_41 AC 32 ms
51,840 KB
testcase_42 AC 31 ms
51,968 KB
testcase_43 AC 49 ms
67,200 KB
testcase_44 AC 66 ms
75,904 KB
testcase_45 AC 44 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 黒を平行移動2グループに分けられるか
# 平行移動(di, dj)で全探索

H, W = map(int, input().split())
S = []
S_num = []
for i in range(H):
    temp = input()
    S.append(temp)
    s = []
    for t in temp:
        if t == '.':
            s.append(0)
        else:
            s.append(1)
    S_num.append(s)

ans = 'NO'
for di in range(0, H):
    for dj in range(0, W):
        if (di, dj) == (0, 0):
            continue
        
        #print('di', di, 'dj', dj)
        color = [[0]*W for i in range(H)]
        for i in range(H-di):
            for j in range(W-dj):
                if S_num[i][j] == 1 and color[i][j] == 0:
                    color[i][j] = 1
                    color[i+di][j+dj] = 1
        if S_num == color:
            #print(di, dj, color)
            ans = 'YES'
print(ans)   
0