結果

問題 No.86 TVザッピング(2)
ユーザー 👑 rin204rin204
提出日時 2023-02-17 16:07:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 608 ms / 5,000 ms
コード長 1,207 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-19 09:09:42
合計ジャッジ時間 4,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 43 ms
52,608 KB
testcase_08 AC 41 ms
53,092 KB
testcase_09 AC 190 ms
76,404 KB
testcase_10 AC 608 ms
76,672 KB
testcase_11 AC 46 ms
60,288 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 53 ms
66,176 KB
testcase_15 AC 64 ms
71,296 KB
testcase_16 AC 70 ms
75,984 KB
testcase_17 AC 39 ms
52,608 KB
testcase_18 AC 48 ms
60,928 KB
testcase_19 AC 46 ms
60,288 KB
testcase_20 AC 42 ms
58,112 KB
testcase_21 AC 534 ms
76,672 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 55 ms
68,864 KB
testcase_24 AC 39 ms
52,224 KB
testcase_25 AC 40 ms
52,224 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 40 ms
52,352 KB
testcase_29 AC 54 ms
65,920 KB
testcase_30 AC 39 ms
52,096 KB
testcase_31 AC 40 ms
52,352 KB
testcase_32 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
S = ["#" * (w + 2)] + ["#" + input() + "#" for _ in range(h)] + ["#" * (w + 2)]
used = [[False] * (w + 2) for _ in range(h + 2)]
cc = sum(row.count('.') for row in S)

di = [0, -1, 0, 1]
dj = [1, 0, -1, 0]

for i in range(1, h + 1):
    for j in range(1, w + 1):
        if S[i][j] == '#':
            continue
        
        for k in range(4):
            lst = []
            ii = i
            jj = j
            cnt = 0
            t = k
            while not used[ii][jj]:
                cnt += 1
                used[ii][jj] = True
                lst.append((ii, jj))
                ni = ii + di[t]
                nj = jj + dj[t]
                if S[ni][nj] == '.':
                    ii, jj = ni, nj
                    continue
                t = (t + 1) % 4
                ni = ii + di[t]
                nj = jj + dj[t]
                if S[ni][nj] == '.':
                    ii, jj = ni, nj
                    continue
                else:
                    break

            if cnt == cc and ii == i and jj == j:
                print("YES")
                exit()

            for ii, jj in lst:
                used[ii][jj] = False

print("NO")
0