結果

問題 No.1588 Connection
ユーザー ayaoniayaoni
提出日時 2021-07-09 01:25:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 95,496 KB
平均クエリ数 521.69
最終ジャッジ日時 2024-07-17 12:51:39
合計ジャッジ時間 5,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,752 KB
testcase_01 AC 66 ms
71,044 KB
testcase_02 AC 62 ms
70,804 KB
testcase_03 AC 61 ms
70,444 KB
testcase_04 AC 61 ms
71,832 KB
testcase_05 AC 64 ms
72,200 KB
testcase_06 AC 64 ms
71,180 KB
testcase_07 AC 63 ms
70,920 KB
testcase_08 AC 68 ms
71,536 KB
testcase_09 AC 68 ms
71,648 KB
testcase_10 AC 67 ms
70,508 KB
testcase_11 AC 69 ms
72,236 KB
testcase_12 AC 129 ms
87,980 KB
testcase_13 AC 92 ms
77,780 KB
testcase_14 AC 65 ms
71,744 KB
testcase_15 AC 65 ms
71,212 KB
testcase_16 AC 64 ms
71,088 KB
testcase_17 AC 64 ms
71,836 KB
testcase_18 AC 63 ms
71,800 KB
testcase_19 AC 64 ms
72,176 KB
testcase_20 AC 66 ms
73,656 KB
testcase_21 AC 209 ms
95,496 KB
testcase_22 AC 211 ms
95,340 KB
testcase_23 AC 132 ms
87,628 KB
testcase_24 AC 96 ms
78,592 KB
testcase_25 AC 151 ms
90,560 KB
testcase_26 AC 147 ms
90,084 KB
testcase_27 AC 95 ms
79,300 KB
testcase_28 AC 86 ms
72,612 KB
testcase_29 AC 212 ms
93,388 KB
testcase_30 AC 199 ms
93,668 KB
testcase_31 AC 61 ms
71,948 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

print('No')
0