結果

問題 No.179 塗り分け
ユーザー gorugo30gorugo30
提出日時 2021-03-16 23:13:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 864 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-11-08 19:06:27
合計ジャッジ時間 6,282 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 98 ms
76,416 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 WA -
testcase_08 AC 162 ms
76,032 KB
testcase_09 WA -
testcase_10 AC 49 ms
59,264 KB
testcase_11 AC 48 ms
59,264 KB
testcase_12 AC 156 ms
76,672 KB
testcase_13 AC 50 ms
59,136 KB
testcase_14 AC 51 ms
60,544 KB
testcase_15 AC 41 ms
51,712 KB
testcase_16 AC 40 ms
51,712 KB
testcase_17 AC 40 ms
51,712 KB
testcase_18 AC 76 ms
70,144 KB
testcase_19 AC 78 ms
70,656 KB
testcase_20 AC 164 ms
76,416 KB
testcase_21 AC 170 ms
76,544 KB
testcase_22 AC 216 ms
76,672 KB
testcase_23 AC 50 ms
60,288 KB
testcase_24 AC 190 ms
76,416 KB
testcase_25 AC 66 ms
65,408 KB
testcase_26 WA -
testcase_27 AC 186 ms
76,544 KB
testcase_28 WA -
testcase_29 AC 191 ms
76,416 KB
testcase_30 WA -
testcase_31 AC 191 ms
76,724 KB
testcase_32 AC 130 ms
76,416 KB
testcase_33 AC 193 ms
76,928 KB
testcase_34 WA -
testcase_35 AC 203 ms
76,528 KB
testcase_36 AC 43 ms
51,840 KB
testcase_37 AC 42 ms
52,224 KB
testcase_38 AC 40 ms
52,224 KB
testcase_39 AC 42 ms
51,840 KB
testcase_40 AC 43 ms
52,224 KB
testcase_41 AC 43 ms
51,968 KB
testcase_42 AC 43 ms
52,352 KB
testcase_43 AC 85 ms
70,912 KB
testcase_44 AC 103 ms
76,160 KB
testcase_45 AC 59 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
grid = [input() for i in range(H)]

for tatehoukounoshift in range(H):
    for yokohoukounoshift in range(W):
        if tatehoukounoshift == yokohoukounoshift == 0:
            continue
        can = True
        used = [[False] * W for i in range(H)]
        for i in range(H):
            for j in range(W):
                if used[i][j] or grid[i][j] == ".":
                    continue
                if not (0 <= i + tatehoukounoshift < H and 0 <= j + yokohoukounoshift < W):
                    can = False
                    break
                if grid[i + tatehoukounoshift][j + yokohoukounoshift] == ".":
                    can = False
                used[i][j] = True
                used[i + tatehoukounoshift][j + yokohoukounoshift] = True
        if can:
            print("YES")
            exit()
print("NO")
0