結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,124 KB
testcase_01 AC 37 ms
53,360 KB
testcase_02 AC 38 ms
53,264 KB
testcase_03 AC 38 ms
53,068 KB
testcase_04 AC 38 ms
53,504 KB
testcase_05 AC 109 ms
75,928 KB
testcase_06 AC 92 ms
75,652 KB
testcase_07 WA -
testcase_08 AC 49 ms
64,120 KB
testcase_09 WA -
testcase_10 AC 1,143 ms
83,612 KB
testcase_11 AC 975 ms
81,988 KB
testcase_12 AC 974 ms
81,368 KB
testcase_13 AC 39 ms
52,620 KB
testcase_14 AC 38 ms
52,824 KB
testcase_15 AC 37 ms
52,624 KB
testcase_16 AC 37 ms
54,176 KB
testcase_17 AC 36 ms
53,668 KB
testcase_18 AC 562 ms
78,288 KB
testcase_19 AC 532 ms
78,156 KB
testcase_20 AC 509 ms
77,852 KB
testcase_21 AC 147 ms
75,972 KB
testcase_22 AC 155 ms
76,164 KB
testcase_23 AC 340 ms
76,744 KB
testcase_24 AC 132 ms
76,280 KB
testcase_25 AC 143 ms
76,324 KB
testcase_26 WA -
testcase_27 AC 381 ms
76,644 KB
testcase_28 WA -
testcase_29 AC 563 ms
78,052 KB
testcase_30 WA -
testcase_31 AC 668 ms
78,820 KB
testcase_32 AC 702 ms
79,020 KB
testcase_33 AC 672 ms
78,892 KB
testcase_34 WA -
testcase_35 AC 785 ms
79,940 KB
testcase_36 AC 39 ms
52,084 KB
testcase_37 AC 38 ms
52,404 KB
testcase_38 AC 37 ms
52,552 KB
testcase_39 AC 38 ms
53,972 KB
testcase_40 AC 38 ms
52,248 KB
testcase_41 AC 37 ms
53,012 KB
testcase_42 AC 37 ms
52,880 KB
testcase_43 AC 65 ms
73,556 KB
testcase_44 AC 120 ms
75,984 KB
testcase_45 AC 54 ms
64,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(0, 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