結果

問題 No.1588 Connection
ユーザー 👑 rin204rin204
提出日時 2022-01-26 17:28:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 96,540 KB
平均クエリ数 328.19
最終ジャッジ日時 2024-12-23 09:33:43
合計ジャッジ時間 5,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 64 ms
68,448 KB
testcase_02 AC 65 ms
67,808 KB
testcase_03 AC 64 ms
68,832 KB
testcase_04 AC 65 ms
69,088 KB
testcase_05 AC 66 ms
67,800 KB
testcase_06 AC 69 ms
68,576 KB
testcase_07 AC 63 ms
68,704 KB
testcase_08 WA -
testcase_09 AC 67 ms
69,216 KB
testcase_10 AC 68 ms
68,704 KB
testcase_11 AC 67 ms
69,472 KB
testcase_12 AC 72 ms
70,112 KB
testcase_13 AC 71 ms
69,600 KB
testcase_14 AC 63 ms
68,576 KB
testcase_15 AC 66 ms
68,704 KB
testcase_16 AC 65 ms
68,576 KB
testcase_17 AC 63 ms
68,320 KB
testcase_18 AC 67 ms
68,576 KB
testcase_19 AC 67 ms
69,088 KB
testcase_20 AC 70 ms
70,636 KB
testcase_21 AC 190 ms
94,944 KB
testcase_22 WA -
testcase_23 AC 115 ms
81,632 KB
testcase_24 AC 90 ms
76,520 KB
testcase_25 AC 181 ms
94,560 KB
testcase_26 AC 176 ms
95,320 KB
testcase_27 AC 105 ms
78,176 KB
testcase_28 AC 90 ms
76,640 KB
testcase_29 AC 76 ms
69,984 KB
testcase_30 AC 198 ms
94,032 KB
testcase_31 AC 63 ms
68,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)

n, m = map(int, input().split())
directions = [(1, 0), (0, 1), (0, -1), (-1, 0)]

used = [[False] * n for _ in range(n)]
def dfs(i, j):
    global m
    for di, dj in directions:
        ni = i + di
        nj = j + dj
        if ni == -1 or nj == -1 or ni == n or nj == n:
            continue
        if used[ni][nj]:
            continue
        if nj == n - 1 and nj == n - 1:
            print("Yes")
            exit()
        used[ni][nj] = True
        print(ni + 1, nj + 1, flush = True)
        t = input()
        if t == "-1":
            exit()
        elif t == "Black":
            dfs(ni, nj)
        else:
            pass
    
    
    
used[0][0] = True
used[-1][-1] = True
dfs(0, 0)
print("No")
0