結果

問題 No.2646 Cycle Maze
ユーザー 👑 rin204rin204
提出日時 2024-03-16 15:04:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 838 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 89,472 KB
最終ジャッジ日時 2024-09-30 04:02:03
合計ジャッジ時間 13,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 48 ms
61,312 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 39 ms
52,608 KB
testcase_12 WA -
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 39 ms
52,224 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 WA -
testcase_17 AC 39 ms
52,096 KB
testcase_18 WA -
testcase_19 AC 40 ms
52,352 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 40 ms
52,352 KB
testcase_22 AC 43 ms
57,600 KB
testcase_23 AC 40 ms
52,224 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 85 ms
76,288 KB
testcase_26 AC 107 ms
76,416 KB
testcase_27 AC 202 ms
77,184 KB
testcase_28 AC 77 ms
72,832 KB
testcase_29 AC 77 ms
74,496 KB
testcase_30 AC 89 ms
76,684 KB
testcase_31 AC 52 ms
62,848 KB
testcase_32 AC 58 ms
65,408 KB
testcase_33 AC 96 ms
76,672 KB
testcase_34 AC 156 ms
77,440 KB
testcase_35 AC 139 ms
76,928 KB
testcase_36 AC 109 ms
76,416 KB
testcase_37 AC 94 ms
76,928 KB
testcase_38 AC 62 ms
66,560 KB
testcase_39 AC 102 ms
76,416 KB
testcase_40 AC 52 ms
62,336 KB
testcase_41 AC 109 ms
76,544 KB
testcase_42 AC 89 ms
76,288 KB
testcase_43 AC 69 ms
69,120 KB
testcase_44 AC 93 ms
76,288 KB
testcase_45 AC 398 ms
80,128 KB
testcase_46 AC 393 ms
80,092 KB
testcase_47 AC 85 ms
77,440 KB
testcase_48 AC 265 ms
79,360 KB
testcase_49 AC 350 ms
80,128 KB
testcase_50 AC 782 ms
83,572 KB
testcase_51 AC 1,475 ms
89,088 KB
testcase_52 AC 1,496 ms
89,384 KB
testcase_53 AC 1,484 ms
89,344 KB
testcase_54 AC 1,582 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, T = map(int, input().split())
si, sj = map(int, input().split())
gi, gj = map(int, input().split())
si -= 1
sj -= 1
gi -= 1
gj -= 1
A = [list(map(int, input())) for _ in range(h)]
dp = [[False] * w for _ in range(h)]
dp[si][sj] = True


di = [0, 1, 0, -1, 0]
dj = [1, 0, -1, 0, 0]
for t in range(T):
    ndp = [[False] * w for _ in range(h)]
    for i in range(h):
        for j in range(w):
            if not dp[i][j]:
                continue
            for k in range(5):
                ni = i + di[k]
                nj = j + dj[k]
                if ni < 0 or ni >= h or nj < 0 or nj >= w:
                    continue
                b = (A[ni][nj] - t - 1) % (A[ni][nj] + 1)
                if b != 0:
                    ndp[ni][nj] = True
    dp = ndp
    if dp[gi][gj]:
        print("Yes")
        exit()

print("No")
0