結果

問題 No.1588 Connection
ユーザー chineristACchineristAC
提出日時 2021-07-08 22:37:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 96,560 KB
平均クエリ数 647.66
最終ジャッジ日時 2024-07-17 11:38:25
合計ジャッジ時間 5,504 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
73,272 KB
testcase_01 AC 66 ms
72,716 KB
testcase_02 AC 66 ms
73,120 KB
testcase_03 AC 66 ms
72,540 KB
testcase_04 AC 67 ms
73,304 KB
testcase_05 AC 67 ms
73,832 KB
testcase_06 AC 68 ms
73,900 KB
testcase_07 AC 66 ms
73,768 KB
testcase_08 AC 73 ms
74,024 KB
testcase_09 AC 75 ms
74,340 KB
testcase_10 AC 73 ms
75,220 KB
testcase_11 AC 70 ms
74,324 KB
testcase_12 AC 140 ms
91,764 KB
testcase_13 AC 176 ms
93,912 KB
testcase_14 AC 69 ms
78,520 KB
testcase_15 AC 71 ms
78,748 KB
testcase_16 AC 68 ms
77,792 KB
testcase_17 AC 69 ms
78,300 KB
testcase_18 AC 68 ms
78,876 KB
testcase_19 AC 68 ms
78,244 KB
testcase_20 AC 71 ms
80,780 KB
testcase_21 AC 233 ms
96,560 KB
testcase_22 AC 226 ms
96,340 KB
testcase_23 AC 144 ms
90,300 KB
testcase_24 AC 105 ms
81,484 KB
testcase_25 AC 175 ms
95,936 KB
testcase_26 AC 164 ms
95,848 KB
testcase_27 AC 102 ms
82,104 KB
testcase_28 AC 94 ms
80,928 KB
testcase_29 AC 217 ms
94,616 KB
testcase_30 AC 219 ms
94,188 KB
testcase_31 AC 65 ms
73,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def query(a,b):
    print("{} {}".format(a+1,b+1))
    sys.stdout.flush()
    res = input()
    assert res!="-1"
    return res=="Black"

N,M = mi()

connect = [[False for j in range(N)] for i in range(N)]
connect[0][0] = True
stack = [(0,0)]
move = [(-1,0),(0,-1),(1,0),(0,1)]
while stack:
    h,w = stack.pop()
    for x,y in move:
        nx,ny = h+x,w+y
        if 0<=nx<N and 0<=ny<N and not connect[nx][ny]:
            check = query(nx,ny)
            if check:
                connect[nx][ny] = True
                stack.append((nx,ny))

print("Yes" if connect[-1][-1] else "No")
0