結果

問題 No.1588 Connection
ユーザー convexineqconvexineq
提出日時 2021-07-09 04:39:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 95,380 KB
平均クエリ数 484.88
最終ジャッジ日時 2024-07-17 12:52:20
合計ジャッジ時間 4,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,004 KB
testcase_01 AC 59 ms
69,900 KB
testcase_02 AC 56 ms
69,924 KB
testcase_03 AC 57 ms
69,620 KB
testcase_04 AC 59 ms
69,336 KB
testcase_05 AC 58 ms
69,192 KB
testcase_06 AC 60 ms
69,744 KB
testcase_07 AC 60 ms
69,304 KB
testcase_08 AC 63 ms
70,452 KB
testcase_09 AC 62 ms
69,072 KB
testcase_10 AC 61 ms
69,972 KB
testcase_11 AC 61 ms
70,992 KB
testcase_12 AC 67 ms
70,360 KB
testcase_13 AC 70 ms
70,104 KB
testcase_14 AC 58 ms
69,180 KB
testcase_15 AC 61 ms
70,368 KB
testcase_16 AC 60 ms
70,228 KB
testcase_17 AC 60 ms
69,800 KB
testcase_18 AC 62 ms
69,520 KB
testcase_19 AC 62 ms
70,176 KB
testcase_20 AC 62 ms
71,844 KB
testcase_21 AC 221 ms
95,084 KB
testcase_22 AC 222 ms
95,380 KB
testcase_23 AC 130 ms
86,068 KB
testcase_24 AC 95 ms
79,476 KB
testcase_25 AC 161 ms
94,888 KB
testcase_26 AC 142 ms
90,892 KB
testcase_27 AC 92 ms
78,348 KB
testcase_28 AC 82 ms
72,032 KB
testcase_29 AC 213 ms
93,796 KB
testcase_30 AC 211 ms
93,196 KB
testcase_31 AC 60 ms
69,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def query(a,b):
    print(f"{a+1} {b+1}",flush=1)
    if DEBUG:
        return a!=1 or b!=1
    else:
        return input() == "Black"

DEBUG = 0
n,m = map(int,input().split())
b = [[0]*n for _ in range(n)]
b[0][0] = b[-1][-1] = 1
q = [(0,0)]
while q:
    i,j = q.pop()
    for ni,nj in [(i-1,j),(i,j-1),(i+1,j),(i,j+1)]:
        if ni == nj == n-1:
            print("Yes")
            exit()
        if 0 <= ni < n and 0 <= nj < n and b[ni][nj] == 0:
            b[ni][nj] = 1
            if query(ni,nj):
                q.append((ni,nj))
print("No")
0