結果

問題 No.1588 Connection
ユーザー ayaoniayaoni
提出日時 2021-07-09 01:23:19
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 1,097 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 95,636 KB
平均クエリ数 521.09
最終ジャッジ日時 2024-07-17 12:51:33
合計ジャッジ時間 5,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 63 ms
71,072 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 67 ms
71,500 KB
testcase_10 AC 67 ms
72,888 KB
testcase_11 AC 68 ms
72,120 KB
testcase_12 AC 128 ms
88,064 KB
testcase_13 AC 90 ms
79,372 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 211 ms
95,636 KB
testcase_22 AC 210 ms
95,388 KB
testcase_23 AC 132 ms
88,248 KB
testcase_24 AC 96 ms
79,576 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 207 ms
93,728 KB
testcase_30 AC 201 ms
93,376 KB
testcase_31 AC 63 ms
70,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = MI()

board = [[-1]*N for _ in range(N)]
board[0][0] = 1
board[-1][-1] = 1

directions = [(-1,0),(1,0),(0,-1),(0,1)]
deq = deque([(0,0)])
while deq:
    i,j = deq.pop()
    for di,dj in directions:
        ni,nj = i+di,j+dj
        if not (0 <= ni < N and 0 <= nj < N):
            continue
        if ni == nj == N-1:
            print('Yes',flush=True)
            exit()
        if board[ni][nj] != -1:
            continue
        print(ni+1,nj+1,flush=True)
        T = S()
        if T == 'Black':
            board[ni][nj] = 1
            deq.append((ni,nj))
        else:
            board[ni][nj] = 0
0