結果
問題 | No.1588 Connection |
ユーザー | shotoyoo |
提出日時 | 2021-07-08 23:03:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
QLE
(最初)
|
実行時間 | - |
コード長 | 1,767 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 82,416 KB |
実行使用メモリ | 94,620 KB |
平均クエリ数 | 364.38 |
最終ジャッジ日時 | 2024-07-17 12:24:15 |
合計ジャッジ時間 | 4,668 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 58 ms
69,368 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 61 ms
68,744 KB |
testcase_10 | AC | 62 ms
70,724 KB |
testcase_11 | AC | 63 ms
69,072 KB |
testcase_12 | AC | 72 ms
69,916 KB |
testcase_13 | AC | 72 ms
69,976 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 190 ms
94,488 KB |
testcase_22 | AC | 192 ms
94,620 KB |
testcase_23 | AC | 116 ms
82,656 KB |
testcase_24 | AC | 88 ms
76,256 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 72 ms
69,728 KB |
testcase_30 | AC | 171 ms
89,056 KB |
testcase_31 | AC | 60 ms
69,012 KB |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() sys.setrecursionlimit(2*10**5+10) write = lambda x: sys.stdout.write(x+"\n") debug = lambda x: sys.stderr.write(x+"\n") writef = lambda x: print("{:.12f}".format(x)) def answer(i, val): write(val) sys.stdout.flush() # write(f"Case #{i+1}: {val}") # 標準出力による質問 interactive import sys # _l = [2,4,3,1,5,7,6] # ans = list(range(len(_l))) # ans.sort(key=lambda i: _l[i]) # ans = [ans[i] for i in range(len(ans))] # def q(i,j,k): # v = sorted([i,j,k], key=lambda i: _l[i]) # return v[1] def query(x,y): print(x+1,y+1) sys.stdout.flush() res = input() if res=="Black": return 1 elif res=="White": return 0 assert 0 def sub(x,y): if x==y==n-1: done[n-1][n-1] = 1 q.append((x,y)) return 0 if done[x][y]: return 0 res = query(x,y) if res: q.append((x,y)) done[x][y] = 1 return 1 if __name__=="__main__": count = 0 val = input() n,m = map(int, val.split()) done = [[0]*n for _ in range(n)] q = [(0,0)] done[0][0] = 1 done[-1][-1] = 1 M = 3000 while q: x,y = q.pop() if x==y==n-1: break if x+1<n: count += sub(x+1,y) if count>=M: break if x-1>=0: count += sub(x-1,y) if count>=M: break if y+1<n: count += sub(x,y+1) if count>=M: break if y-1>=n: count += sub(x,y-1) if count>=M: break if done[n-1][n-1] or ((n-1,n-1) in q) or ((n-2, n-1) in q) or ((n-1, n-2) in q): print("Yes") else: print("No")