結果

問題 No.1588 Connection
ユーザー H3PO4H3PO4
提出日時 2021-07-08 23:25:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,528 KB
平均クエリ数 559.75
最終ジャッジ日時 2024-07-17 12:33:47
合計ジャッジ時間 4,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
27,096 KB
testcase_01 AC 51 ms
27,224 KB
testcase_02 AC 51 ms
27,352 KB
testcase_03 AC 51 ms
27,480 KB
testcase_04 AC 50 ms
27,608 KB
testcase_05 AC 55 ms
27,352 KB
testcase_06 AC 52 ms
27,224 KB
testcase_07 AC 52 ms
27,224 KB
testcase_08 AC 56 ms
27,480 KB
testcase_09 AC 54 ms
27,608 KB
testcase_10 AC 55 ms
27,480 KB
testcase_11 AC 56 ms
27,096 KB
testcase_12 AC 96 ms
27,224 KB
testcase_13 AC 101 ms
27,480 KB
testcase_14 AC 51 ms
27,224 KB
testcase_15 AC 52 ms
27,480 KB
testcase_16 AC 53 ms
27,480 KB
testcase_17 AC 52 ms
27,224 KB
testcase_18 AC 54 ms
27,096 KB
testcase_19 AC 53 ms
27,224 KB
testcase_20 AC 57 ms
29,528 KB
testcase_21 AC 160 ms
29,144 KB
testcase_22 AC 162 ms
29,144 KB
testcase_23 AC 94 ms
27,480 KB
testcase_24 AC 73 ms
27,608 KB
testcase_25 AC 110 ms
29,400 KB
testcase_26 AC 109 ms
29,400 KB
testcase_27 AC 75 ms
27,480 KB
testcase_28 AC 68 ms
27,608 KB
testcase_29 AC 165 ms
27,480 KB
testcase_30 AC 164 ms
27,224 KB
testcase_31 AC 53 ms
27,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
d = deque([(0, 0)])
table = [[None] * N for _ in range(N)]
table[0][0] = True


def query(x, y):
    print(x, y, flush=True)
    T = input()
    if T == 'Black':
        return True
    elif T == 'White':
        return False
    else:
        raise ValueError


while d:
    x, y = d.pop()
    if x == N - 1 and y == N - 1:
        print('Yes', flush=True)
        exit()
    for dx, dy in ((1, 0), (0, 1), (-1, 0), (0, -1)):
        xdx, ydy = x + dx, y + dy
        if 0 <= xdx < N and 0 <= ydy < N and table[xdx][ydy] is None:
            T = query(xdx + 1, ydy + 1)
            table[xdx][ydy] = T
            if T:
                d.append((xdx, ydy))
print('No', flush=True)
0