結果

問題 No.179 塗り分け
ユーザー gr1msl3ygr1msl3y
提出日時 2022-05-16 23:08:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-09-14 16:20:04
合計ジャッジ時間 11,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
51,840 KB
testcase_01 AC 89 ms
52,096 KB
testcase_02 AC 86 ms
51,840 KB
testcase_03 AC 78 ms
51,840 KB
testcase_04 AC 45 ms
51,968 KB
testcase_05 AC 125 ms
76,032 KB
testcase_06 AC 49 ms
60,544 KB
testcase_07 WA -
testcase_08 AC 65 ms
68,736 KB
testcase_09 AC 63 ms
68,608 KB
testcase_10 AC 85 ms
76,160 KB
testcase_11 AC 82 ms
75,904 KB
testcase_12 AC 1,529 ms
84,608 KB
testcase_13 AC 42 ms
52,096 KB
testcase_14 AC 42 ms
52,224 KB
testcase_15 AC 41 ms
51,840 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 WA -
testcase_18 AC 88 ms
75,776 KB
testcase_19 AC 87 ms
75,904 KB
testcase_20 AC 649 ms
78,848 KB
testcase_21 AC 154 ms
76,032 KB
testcase_22 AC 173 ms
75,904 KB
testcase_23 AC 62 ms
68,096 KB
testcase_24 AC 137 ms
75,648 KB
testcase_25 AC 53 ms
61,568 KB
testcase_26 AC 94 ms
75,648 KB
testcase_27 AC 417 ms
77,056 KB
testcase_28 AC 91 ms
75,776 KB
testcase_29 AC 628 ms
78,848 KB
testcase_30 AC 325 ms
77,440 KB
testcase_31 AC 775 ms
80,384 KB
testcase_32 AC 272 ms
77,184 KB
testcase_33 AC 783 ms
80,384 KB
testcase_34 AC 221 ms
76,672 KB
testcase_35 AC 898 ms
81,792 KB
testcase_36 AC 42 ms
51,584 KB
testcase_37 AC 42 ms
51,584 KB
testcase_38 AC 42 ms
51,712 KB
testcase_39 AC 42 ms
51,840 KB
testcase_40 AC 42 ms
51,968 KB
testcase_41 AC 42 ms
51,840 KB
testcase_42 AC 45 ms
56,320 KB
testcase_43 AC 72 ms
74,880 KB
testcase_44 AC 128 ms
75,904 KB
testcase_45 AC 51 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def solve(h, w):
    seen = {t: 0 for t in T}
    for t in T:
        if seen[t]:
            continue
        seen[t] = 1
        nt = t[0]+h, t[1]+w
        if nt not in T:
            break
        if seen[nt]:
            break
        seen[nt] = 1
    else:
        return 1
    return 0


for i in range(H):
    for j in range(-W+1, W):
        if solve(i, j):
            print('YES')
            exit()
else:
    print('NO')
0