結果

問題 No.1588 Connection
ユーザー shinichishinichi
提出日時 2021-07-08 23:19:03
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 970 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 96,832 KB
平均クエリ数 562.12
最終ジャッジ日時 2024-07-17 12:31:15
合計ジャッジ時間 5,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
70,368 KB
testcase_01 WA -
testcase_02 AC 63 ms
70,672 KB
testcase_03 AC 63 ms
70,884 KB
testcase_04 AC 63 ms
70,756 KB
testcase_05 AC 62 ms
71,632 KB
testcase_06 AC 64 ms
71,932 KB
testcase_07 AC 62 ms
70,656 KB
testcase_08 AC 66 ms
72,860 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 65 ms
72,356 KB
testcase_15 AC 65 ms
71,556 KB
testcase_16 AC 63 ms
70,664 KB
testcase_17 AC 63 ms
70,764 KB
testcase_18 AC 63 ms
70,944 KB
testcase_19 AC 65 ms
71,540 KB
testcase_20 AC 67 ms
72,608 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 168 ms
95,956 KB
testcase_26 AC 167 ms
95,044 KB
testcase_27 AC 101 ms
81,492 KB
testcase_28 AC 90 ms
78,592 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
grid = [[None]*N for _ in range(N)]
grid[0][0] = True
grid[-1][-1] = True
M -= 2

q = deque()
q.append((0, 0))
move = [(-1, 0), (1, 0), (0, 1), (0, -1)]

def ques(y, x):
    print(x+1, y+1)
    s = input()
    if s == 'Black':
        return True
    else:
        return False


flag = False
qs = 0
while q and M:
    y, x = q.popleft()
    for dy, dx in move:
        ny, nx = dy+y, dx+x
        if 0 <= ny < N and 0 <= nx < N and grid[ny][nx] is None:
            if nx == ny == N-1:
                flag = True
                q = deque()
                break
            if ques(ny, nx):
                grid[ny][nx] = True
                q.append((ny, nx))
                qs += 1
                if qs == 3000:
                    q = deque()
                    break
                M -= 1
            else:
                grid[ny][nx] = False


if flag:
    print('Yes')
else:
    print('No')
0