結果

問題 No.1588 Connection
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-14 23:33:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 96,568 KB
平均クエリ数 551.19
最終ジャッジ日時 2024-07-17 13:04:14
合計ジャッジ時間 5,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
72,028 KB
testcase_01 AC 63 ms
70,416 KB
testcase_02 AC 62 ms
71,160 KB
testcase_03 AC 61 ms
71,072 KB
testcase_04 AC 61 ms
70,852 KB
testcase_05 AC 63 ms
70,984 KB
testcase_06 AC 63 ms
71,844 KB
testcase_07 AC 62 ms
71,588 KB
testcase_08 AC 67 ms
70,920 KB
testcase_09 AC 68 ms
71,264 KB
testcase_10 AC 68 ms
72,072 KB
testcase_11 AC 71 ms
72,024 KB
testcase_12 AC 155 ms
93,464 KB
testcase_13 AC 157 ms
93,544 KB
testcase_14 AC 62 ms
71,104 KB
testcase_15 AC 64 ms
71,904 KB
testcase_16 AC 62 ms
71,384 KB
testcase_17 AC 62 ms
71,888 KB
testcase_18 AC 62 ms
71,264 KB
testcase_19 AC 62 ms
70,444 KB
testcase_20 AC 64 ms
73,712 KB
testcase_21 AC 234 ms
95,248 KB
testcase_22 AC 233 ms
96,056 KB
testcase_23 AC 139 ms
88,940 KB
testcase_24 AC 105 ms
82,820 KB
testcase_25 AC 170 ms
96,568 KB
testcase_26 AC 172 ms
95,168 KB
testcase_27 AC 99 ms
80,680 KB
testcase_28 AC 89 ms
79,592 KB
testcase_29 AC 218 ms
93,684 KB
testcase_30 AC 232 ms
93,736 KB
testcase_31 AC 62 ms
71,580 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:
    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(nx+1,ny+1)
            sys.stdout.flush()
            s = input()
            if s == "Black":
                black[nx][ny] = 1
                q.append((nx,ny))
            else:
                black[nx][ny] = 0

print("No")
0