結果

問題 No.1588 Connection
ユーザー horitaka1999horitaka1999
提出日時 2021-07-08 23:33:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 98,592 KB
平均クエリ数 551.28
最終ジャッジ日時 2024-07-17 12:36:03
合計ジャッジ時間 5,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,604 KB
testcase_01 AC 62 ms
70,368 KB
testcase_02 AC 62 ms
71,792 KB
testcase_03 AC 62 ms
70,848 KB
testcase_04 AC 63 ms
72,124 KB
testcase_05 AC 62 ms
70,780 KB
testcase_06 AC 65 ms
72,092 KB
testcase_07 AC 63 ms
72,068 KB
testcase_08 AC 67 ms
72,344 KB
testcase_09 AC 68 ms
72,160 KB
testcase_10 AC 70 ms
71,728 KB
testcase_11 AC 68 ms
72,432 KB
testcase_12 AC 151 ms
93,224 KB
testcase_13 AC 165 ms
93,360 KB
testcase_14 AC 63 ms
71,068 KB
testcase_15 AC 63 ms
70,608 KB
testcase_16 AC 63 ms
71,148 KB
testcase_17 AC 63 ms
71,832 KB
testcase_18 AC 62 ms
70,616 KB
testcase_19 AC 67 ms
73,172 KB
testcase_20 AC 66 ms
74,880 KB
testcase_21 AC 245 ms
98,592 KB
testcase_22 AC 241 ms
98,200 KB
testcase_23 AC 140 ms
90,112 KB
testcase_24 AC 105 ms
84,100 KB
testcase_25 AC 173 ms
97,752 KB
testcase_26 AC 171 ms
97,440 KB
testcase_27 AC 99 ms
81,392 KB
testcase_28 AC 90 ms
80,072 KB
testcase_29 AC 229 ms
93,524 KB
testcase_30 AC 215 ms
93,652 KB
testcase_31 AC 63 ms
71,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
Board = [[0] * N for _ in range(N)]
Board[0][0] = 1
Board[N-1][N-1] = 1
from collections import deque
q = deque()
q.append((0,0))
seen = [[False]* N for _ in range(N)]
def check(i,j):
    if 0 <= i < N and 0 <= j < N:
        return True
    else:
        return False
while q:
    i,j= q.popleft()
    seen[i][j] = True
    if i == N-1 and j == N-1:
        print('Yes')
        exit()
    for p,r in [(1,0),(-1,0),(0,-1),(0,1)]:
        if check(i+p,j+r) and not seen[i+p][j+r]:
            if i + p + 1 == N and j + r + 1 == N:
                print('Yes')
                exit()
            print(i+p+1,j+r+1)
            seen[i+p][j+r] = True
            t = input()
            if t == 'Black':
                q.append((i+p,j+r))
print('No')
0