結果

問題 No.179 塗り分け
ユーザー lloyzlloyz
提出日時 2023-05-24 00:09:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,160 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-06-02 11:32:15
合計ジャッジ時間 4,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 79 ms
75,904 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 WA -
testcase_08 AC 99 ms
76,800 KB
testcase_09 WA -
testcase_10 AC 47 ms
60,800 KB
testcase_11 AC 48 ms
61,056 KB
testcase_12 AC 112 ms
76,288 KB
testcase_13 AC 40 ms
57,856 KB
testcase_14 AC 44 ms
60,800 KB
testcase_15 AC 37 ms
51,584 KB
testcase_16 AC 36 ms
52,096 KB
testcase_17 AC 36 ms
52,352 KB
testcase_18 AC 55 ms
67,072 KB
testcase_19 AC 56 ms
65,664 KB
testcase_20 AC 118 ms
76,800 KB
testcase_21 AC 114 ms
76,544 KB
testcase_22 AC 142 ms
76,416 KB
testcase_23 AC 46 ms
61,184 KB
testcase_24 AC 105 ms
76,288 KB
testcase_25 AC 48 ms
62,720 KB
testcase_26 WA -
testcase_27 AC 109 ms
76,416 KB
testcase_28 WA -
testcase_29 AC 124 ms
76,672 KB
testcase_30 WA -
testcase_31 AC 104 ms
76,416 KB
testcase_32 AC 87 ms
76,032 KB
testcase_33 AC 116 ms
76,416 KB
testcase_34 WA -
testcase_35 AC 114 ms
76,416 KB
testcase_36 AC 36 ms
52,224 KB
testcase_37 AC 37 ms
51,968 KB
testcase_38 AC 36 ms
51,968 KB
testcase_39 AC 39 ms
51,968 KB
testcase_40 AC 39 ms
52,096 KB
testcase_41 AC 38 ms
52,224 KB
testcase_42 AC 36 ms
52,608 KB
testcase_43 AC 55 ms
68,480 KB
testcase_44 AC 65 ms
75,648 KB
testcase_45 AC 41 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
F = [list(input()) for _ in range(h)]

for di in range(h):
    for dj in range(w):
        if di == 0 and dj == 0:
            continue
        C = [[None for _ in range(w)] for _ in range(h)]
        flag = True
        for i in range(h):
            for j in range(w):
                if F[i][j] == '#' and C[i][j] == None:
                    C[i][j] = 'R'
                    if i + di < h and j + dj < w:
                        if F[i + di][j + dj] == '#' and C[i + di][j + dj] == None:
                            C[i + di][j + dj] = 'B'
                        else:
                            flag = False
                            break
                    else:
                        flag = False
                        break
            if not flag:
                break
        if flag:
            for i in range(h):
                for j in range(w):
                    if F[i][j] == '#' and C[i][j] == None:
                        flag = False
                        break
                if not flag:
                    break
        if flag:
            print("YES")
            exit()
print("NO")
0