結果

問題 No.1588 Connection
ユーザー rlangevinrlangevin
提出日時 2024-04-29 00:03:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 95,544 KB
平均クエリ数 563.00
最終ジャッジ日時 2024-11-17 21:34:39
合計ジャッジ時間 5,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,232 KB
testcase_01 AC 57 ms
70,496 KB
testcase_02 AC 56 ms
69,856 KB
testcase_03 AC 59 ms
69,856 KB
testcase_04 AC 57 ms
69,984 KB
testcase_05 AC 61 ms
70,144 KB
testcase_06 AC 62 ms
70,496 KB
testcase_07 AC 59 ms
70,112 KB
testcase_08 AC 64 ms
70,880 KB
testcase_09 AC 68 ms
71,264 KB
testcase_10 AC 62 ms
71,288 KB
testcase_11 AC 62 ms
71,136 KB
testcase_12 AC 147 ms
93,356 KB
testcase_13 AC 170 ms
93,792 KB
testcase_14 AC 64 ms
70,752 KB
testcase_15 AC 67 ms
70,496 KB
testcase_16 AC 58 ms
70,496 KB
testcase_17 AC 65 ms
69,856 KB
testcase_18 AC 64 ms
70,112 KB
testcase_19 AC 63 ms
70,232 KB
testcase_20 AC 67 ms
72,416 KB
testcase_21 AC 224 ms
95,276 KB
testcase_22 AC 221 ms
95,392 KB
testcase_23 AC 136 ms
93,280 KB
testcase_24 AC 96 ms
82,528 KB
testcase_25 AC 159 ms
94,688 KB
testcase_26 AC 160 ms
95,544 KB
testcase_27 AC 91 ms
80,352 KB
testcase_28 AC 83 ms
78,528 KB
testcase_29 AC 260 ms
93,792 KB
testcase_30 AC 207 ms
93,664 KB
testcase_31 AC 61 ms
70,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, M = map(int, input().split())
Q = deque()
Q.append((0, 0))
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
seen = [[0] * N for _ in range(N)]
seen[0][0] = 1

def query(x, y):
    print(x+1, y+1, flush=True)
    return input() == "Black"

while Q:
    px, py = Q.popleft()
    for k in range(4):
        x = px + dx[k]
        y = py + dy[k]
        if x < 0 or x > N - 1 or y < 0 or y > N - 1:
            continue
        if seen[x][y]:
            continue
        seen[x][y] = 1
        if query(x, y):
            Q.append((x, y))
            
print("Yes") if seen[N-1][N-1] else print("No")
0