結果

問題 No.1588 Connection
ユーザー IgrmiIgrmi
提出日時 2021-07-08 23:30:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 95,888 KB
平均クエリ数 372.84
最終ジャッジ日時 2024-07-17 12:35:22
合計ジャッジ時間 4,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,508 KB
testcase_01 AC 58 ms
70,176 KB
testcase_02 AC 58 ms
69,568 KB
testcase_03 AC 57 ms
68,740 KB
testcase_04 AC 58 ms
69,400 KB
testcase_05 AC 58 ms
69,524 KB
testcase_06 AC 59 ms
69,496 KB
testcase_07 AC 57 ms
68,824 KB
testcase_08 AC 62 ms
69,852 KB
testcase_09 AC 60 ms
70,316 KB
testcase_10 AC 61 ms
69,996 KB
testcase_11 AC 63 ms
71,296 KB
testcase_12 AC 100 ms
86,048 KB
testcase_13 AC 72 ms
72,076 KB
testcase_14 AC 59 ms
71,284 KB
testcase_15 AC 60 ms
70,796 KB
testcase_16 AC 59 ms
69,640 KB
testcase_17 AC 58 ms
68,852 KB
testcase_18 AC 58 ms
68,948 KB
testcase_19 AC 63 ms
69,832 KB
testcase_20 AC 60 ms
71,148 KB
testcase_21 AC 186 ms
94,772 KB
testcase_22 AC 177 ms
95,812 KB
testcase_23 AC 119 ms
88,324 KB
testcase_24 AC 86 ms
78,372 KB
testcase_25 AC 174 ms
95,888 KB
testcase_26 AC 157 ms
95,728 KB
testcase_27 AC 96 ms
79,068 KB
testcase_28 AC 87 ms
78,352 KB
testcase_29 AC 141 ms
90,388 KB
testcase_30 AC 233 ms
94,068 KB
testcase_31 AC 59 ms
69,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
D = [(-1, 0), (1, 0), (0, -1), (0, 1)]
Grid = [[0] * (N + 1) for _ in range(N + 1)]
Grid[1][1] = 1
Query = [(1, 1)]
while Query:
    H, W = Query.pop()
    print(H, W)
    Judge = input()
    if Judge == 'Black':
        for d1, d2 in D:
            h, w = H + d1, W + d2
            if h == N and w == N:
                print('Yes')
                exit()
            if h >= 1 and h <= N and w >= 1 and w <= N and not Grid[h][w]:
                Query.append((h, w))
                Grid[h][w] = 1
    elif Judge == '-1': exit()
print('No')
0