結果

問題 No.1588 Connection
ユーザー ああいいああいい
提出日時 2021-12-08 19:10:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 29,528 KB
平均クエリ数 557.78
最終ジャッジ日時 2024-07-16 08:08:12
合計ジャッジ時間 4,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
26,960 KB
testcase_01 AC 46 ms
26,968 KB
testcase_02 AC 48 ms
27,472 KB
testcase_03 AC 48 ms
27,224 KB
testcase_04 AC 46 ms
27,352 KB
testcase_05 AC 50 ms
27,224 KB
testcase_06 AC 50 ms
26,968 KB
testcase_07 AC 46 ms
27,608 KB
testcase_08 AC 48 ms
26,960 KB
testcase_09 AC 50 ms
27,224 KB
testcase_10 AC 50 ms
27,352 KB
testcase_11 AC 50 ms
27,096 KB
testcase_12 AC 87 ms
27,224 KB
testcase_13 AC 93 ms
27,480 KB
testcase_14 AC 46 ms
27,224 KB
testcase_15 AC 47 ms
27,224 KB
testcase_16 AC 47 ms
27,480 KB
testcase_17 AC 45 ms
27,224 KB
testcase_18 AC 46 ms
26,968 KB
testcase_19 AC 46 ms
27,608 KB
testcase_20 AC 52 ms
29,016 KB
testcase_21 AC 153 ms
29,400 KB
testcase_22 AC 153 ms
29,272 KB
testcase_23 AC 89 ms
27,608 KB
testcase_24 AC 69 ms
27,608 KB
testcase_25 AC 102 ms
29,400 KB
testcase_26 AC 101 ms
29,528 KB
testcase_27 AC 72 ms
27,864 KB
testcase_28 AC 62 ms
27,352 KB
testcase_29 AC 158 ms
27,224 KB
testcase_30 AC 157 ms
27,736 KB
testcase_31 AC 47 ms
27,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
N,M = map(int,input().split())

B = 'Black'
W = 'White'

q = []
masu = [[0] * (N+1) for _ in range(N+1)]
masu[1][1] = 1

q.append((1,1))
while len(q):
    x,y = q.pop()
    if x == N and y == N:
        print('Yes')
        exit()
        
    for i,j in [[1,0],[-1,0],[0,1],[0,-1]]:
        if 1 <= x+i <= N and 1 <= y+j <= N:
            if masu[x+i][y+j] == 0:
                print(x+i,y+j)
                T = input()
                if T == B:
                    masu[x+i][y+j] = 1
                    q.append((x+i,y+j))
                else:
                    masu[x+i][y+j] = -1
print('No')
0