結果

問題 No.1588 Connection
ユーザー 👑 rin204rin204
提出日時 2022-01-26 17:33:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 96,252 KB
平均クエリ数 344.88
最終ジャッジ日時 2024-06-02 12:13:01
合計ジャッジ時間 4,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
69,192 KB
testcase_01 AC 46 ms
68,980 KB
testcase_02 AC 48 ms
69,740 KB
testcase_03 AC 46 ms
69,948 KB
testcase_04 AC 47 ms
69,424 KB
testcase_05 AC 47 ms
70,164 KB
testcase_06 AC 48 ms
69,316 KB
testcase_07 AC 47 ms
70,536 KB
testcase_08 AC 51 ms
69,620 KB
testcase_09 AC 48 ms
69,220 KB
testcase_10 AC 48 ms
69,344 KB
testcase_11 AC 47 ms
69,656 KB
testcase_12 AC 51 ms
70,300 KB
testcase_13 AC 53 ms
70,168 KB
testcase_14 AC 47 ms
69,308 KB
testcase_15 AC 48 ms
69,556 KB
testcase_16 AC 47 ms
68,292 KB
testcase_17 AC 46 ms
69,860 KB
testcase_18 AC 47 ms
69,492 KB
testcase_19 AC 47 ms
70,076 KB
testcase_20 AC 50 ms
71,784 KB
testcase_21 AC 140 ms
95,156 KB
testcase_22 AC 140 ms
95,688 KB
testcase_23 AC 85 ms
83,012 KB
testcase_24 AC 66 ms
77,916 KB
testcase_25 AC 131 ms
94,572 KB
testcase_26 AC 132 ms
96,252 KB
testcase_27 AC 77 ms
79,296 KB
testcase_28 AC 68 ms
77,700 KB
testcase_29 AC 153 ms
94,192 KB
testcase_30 AC 149 ms
93,952 KB
testcase_31 AC 47 ms
70,100 KB
権限があれば一括ダウンロードができます

ソースコード

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
dfs(0, 0)
print("No")
0