結果

問題 No.1588 Connection
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-08 23:18:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 94,664 KB
平均クエリ数 562.31
最終ジャッジ日時 2024-07-17 12:30:33
合計ジャッジ時間 5,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,792 KB
testcase_01 AC 63 ms
71,860 KB
testcase_02 AC 67 ms
70,872 KB
testcase_03 AC 63 ms
71,384 KB
testcase_04 AC 63 ms
71,320 KB
testcase_05 AC 63 ms
71,076 KB
testcase_06 AC 65 ms
72,348 KB
testcase_07 AC 62 ms
70,016 KB
testcase_08 AC 66 ms
71,128 KB
testcase_09 AC 70 ms
71,360 KB
testcase_10 AC 68 ms
72,144 KB
testcase_11 AC 67 ms
70,952 KB
testcase_12 AC 129 ms
86,440 KB
testcase_13 AC 137 ms
87,972 KB
testcase_14 AC 63 ms
71,524 KB
testcase_15 AC 65 ms
71,348 KB
testcase_16 AC 63 ms
70,748 KB
testcase_17 AC 63 ms
70,908 KB
testcase_18 AC 65 ms
70,572 KB
testcase_19 AC 64 ms
71,036 KB
testcase_20 AC 66 ms
74,032 KB
testcase_21 AC 197 ms
94,496 KB
testcase_22 AC 192 ms
94,664 KB
testcase_23 AC 125 ms
84,596 KB
testcase_24 AC 97 ms
80,572 KB
testcase_25 AC 141 ms
87,380 KB
testcase_26 AC 140 ms
89,116 KB
testcase_27 AC 94 ms
79,124 KB
testcase_28 AC 84 ms
73,384 KB
testcase_29 AC 205 ms
93,440 KB
testcase_30 AC 201 ms
92,888 KB
testcase_31 AC 63 ms
70,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

500*500

黒マスから、次の黒マスを3回以内に見付けられればおk

"""

import sys
from sys import stdin
from collections import deque

def ask(x,y):

    if not (0 <= x < N and 0 <= y < N):
        return

    if ans[x][y] == None:
        print (x+1,y+1,flush=True)
        cat = stdin.readline()[:-1]

        if cat == "Black":
            ans[x][y] = 1
            q.append((x,y))
        elif cat == "White":
            ans[x][y] = 0
        else:
            assert False
            sys.exit()
        

N,M = map(int,stdin.readline().split())

ans = [[None] * N for i in range(N)]

q = deque()

ans[0][0] = 1
ans[-1][-1] = 1

q.append((0,0))

while q:

    x,y = q.popleft()
    ask(x-1,y)
    ask(x+1,y)
    ask(x,y-1)
    ask(x,y+1)

if ans[-2][-1] == 1 or ans[-1][-2] == 1:
    print ("Yes")
else:
    print ("No")
0