結果

問題 No.1588 Connection
ユーザー 👑 rin204rin204
提出日時 2022-01-26 17:31:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 87,036 KB
実行使用メモリ 97,452 KB
平均クエリ数 474.66
最終ジャッジ日時 2023-08-24 23:06:42
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
87,260 KB
testcase_01 WA -
testcase_02 AC 97 ms
87,048 KB
testcase_03 AC 96 ms
87,368 KB
testcase_04 AC 96 ms
87,304 KB
testcase_05 AC 99 ms
87,048 KB
testcase_06 AC 101 ms
87,196 KB
testcase_07 AC 98 ms
87,056 KB
testcase_08 AC 103 ms
87,192 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 98 ms
87,356 KB
testcase_15 AC 103 ms
87,352 KB
testcase_16 AC 99 ms
87,176 KB
testcase_17 AC 97 ms
87,100 KB
testcase_18 AC 97 ms
87,752 KB
testcase_19 AC 97 ms
87,440 KB
testcase_20 AC 98 ms
87,048 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 202 ms
95,492 KB
testcase_26 AC 203 ms
96,556 KB
testcase_27 AC 136 ms
91,736 KB
testcase_28 AC 127 ms
91,248 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)

n, m = map(int, input().split())
directions = [(1, 0), (0, 1), (0, -1), (-1, 0)]
m -= 2
used = [[False] * n for _ in range(n)]
def dfs(i, j):
    global m
    for di, dj in directions:
        ni = i + di
        nj = j + dj
        if ni == -1 or nj == -1 or ni == n or nj == n:
            continue
        if used[ni][nj]:
            continue
        if ni == n - 1 and nj == n - 1:
            print("Yes")
            exit()
        used[ni][nj] = True
        print(ni + 1, nj + 1, flush = True)
        t = input()
        if t == "-1":
            exit()
        elif t == "Black":
            m -= 1
            dfs(ni, nj)
        else:
            pass
    if m == 0:
        print("No")
        exit()
    
    
used[0][0] = True
used[-1][-1] = True
dfs(0, 0)
print("No")
0