結果

問題 No.1588 Connection
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-14 23:28:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 697 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 94,036 KB
平均クエリ数 119.81
最終ジャッジ日時 2024-07-17 13:04:09
合計ジャッジ時間 4,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 64 ms
71,168 KB
testcase_02 AC 63 ms
71,016 KB
testcase_03 AC 64 ms
70,740 KB
testcase_04 AC 65 ms
71,788 KB
testcase_05 AC 66 ms
71,124 KB
testcase_06 AC 65 ms
70,796 KB
testcase_07 AC 62 ms
71,936 KB
testcase_08 AC 67 ms
71,832 KB
testcase_09 AC 69 ms
71,568 KB
testcase_10 AC 69 ms
71,948 KB
testcase_11 AC 69 ms
72,316 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 65 ms
71,760 KB
testcase_15 AC 66 ms
71,256 KB
testcase_16 AC 64 ms
70,872 KB
testcase_17 AC 63 ms
70,540 KB
testcase_18 AC 63 ms
70,908 KB
testcase_19 AC 63 ms
70,980 KB
testcase_20 AC 66 ms
72,884 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 67 ms
73,344 KB
testcase_26 AC 66 ms
72,420 KB
testcase_27 AC 65 ms
71,260 KB
testcase_28 AC 63 ms
71,520 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 63 ms
70,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

n,m = map(int,input().split())
count = 0

black = [[-1]*n for i in range(n)]
black[0][0] = black[-1][-1] = 1
q = deque([(0,0)])
while q and count < 3000:
    x,y = q.popleft()
    for dx,dy in ((0,1),(1,0),(0,-1),(-1,0)):
        nx = x+dx
        ny = y+dy
        if nx == ny == n-1:
            print("Yes")
            exit()
        if 0 <= nx < n and 0 <= ny < n and black[nx][ny] == -1:
            print(x+1,y+1)
            sys.stdout.flush()
            s = input()
            if s == "Black":
                black[nx][ny] = 1
                q.append((nx,ny))
            else:
                black[nx][ny] = 0
        count += 1
print("No")
0