結果

問題 No.1588 Connection
ユーザー とりゐとりゐ
提出日時 2021-07-08 23:07:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 96,612 KB
平均クエリ数 546.59
最終ジャッジ日時 2024-07-17 12:25:51
合計ジャッジ時間 5,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
70,880 KB
testcase_01 AC 63 ms
71,044 KB
testcase_02 AC 62 ms
72,256 KB
testcase_03 AC 62 ms
71,444 KB
testcase_04 AC 64 ms
71,472 KB
testcase_05 AC 63 ms
71,088 KB
testcase_06 AC 64 ms
70,968 KB
testcase_07 AC 61 ms
70,712 KB
testcase_08 AC 67 ms
71,264 KB
testcase_09 AC 68 ms
71,880 KB
testcase_10 AC 69 ms
72,716 KB
testcase_11 AC 69 ms
71,608 KB
testcase_12 AC 137 ms
88,792 KB
testcase_13 AC 173 ms
93,760 KB
testcase_14 AC 63 ms
71,032 KB
testcase_15 AC 65 ms
71,696 KB
testcase_16 AC 63 ms
71,676 KB
testcase_17 AC 62 ms
72,208 KB
testcase_18 AC 62 ms
71,196 KB
testcase_19 AC 64 ms
71,576 KB
testcase_20 AC 65 ms
73,140 KB
testcase_21 AC 228 ms
96,416 KB
testcase_22 AC 227 ms
96,612 KB
testcase_23 AC 150 ms
94,360 KB
testcase_24 AC 100 ms
80,516 KB
testcase_25 AC 170 ms
96,576 KB
testcase_26 AC 170 ms
96,368 KB
testcase_27 AC 99 ms
81,240 KB
testcase_28 AC 104 ms
79,896 KB
testcase_29 AC 215 ms
94,008 KB
testcase_30 AC 235 ms
93,444 KB
testcase_31 AC 63 ms
70,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from collections import deque,Counter
#sys.setrecursionlimit(10**7)
int1=lambda x: int(x)-1

mi=lambda :map(int,input().split())
li=lambda :list(mi())
mi1=lambda :map(int1,input().split())
li1=lambda :list(mi1())
mis=lambda :map(str,input().split())
lis=lambda :list(mis())

from collections import defaultdict
"""
d=defaultdict(int) #初期値 0
d=defaultdict(lambda:1) #初期値 1
"""

mod=10**9+7
Mod=998244353
INF=10**18
ans=0

n,m=mi()
Map=[[-1]*n for i in range(n)]
Map[0][0]=1
d=deque()
d.append([0,0])
dxdy=[[0,1],[0,-1],[1,0],[-1,0]]
while d:
  x,y=d.pop()
  for dx,dy in dxdy:
    if 0<=x+dx<n and 0<=y+dy<n:
      if Map[x+dx][y+dy]==-1:
        print(x+dx+1,y+dy+1)
        s=input()
        if s=='Black':
          Map[x+dx][y+dy]=1
          d.append([x+dx,y+dy])
          if x+dx==n-1 and y+dy==n-1:
            print('Yes')
            exit()
        else:
          Map[x+dx][y+dy]=0
print('No')
0