結果

問題 No.513 宝探し2
ユーザー mkawa2mkawa2
提出日時 2020-11-10 16:51:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 1,403 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 11,092 KB
実行使用メモリ 24,972 KB
平均クエリ数 48.00
最終ジャッジ日時 2023-09-24 02:48:26
合計ジャッジ時間 1,629 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
24,972 KB
testcase_01 AC 45 ms
24,808 KB
testcase_02 AC 43 ms
24,536 KB
testcase_03 AC 41 ms
24,800 KB
testcase_04 AC 42 ms
24,252 KB
testcase_05 AC 41 ms
24,728 KB
testcase_06 AC 46 ms
24,544 KB
testcase_07 AC 41 ms
24,900 KB
testcase_08 AC 41 ms
24,860 KB
testcase_09 AC 40 ms
24,344 KB
testcase_10 AC 42 ms
24,300 KB
testcase_11 AC 42 ms
24,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
# def II(): return int(sys.stdin.buffer.readline())
def II(): return int(input())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
def inval(ni, nj, h, w):
    if ni < 0 or ni >= h or nj < 0 or nj >= w: return True
    return False
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**16

def ask(x,y):
    print(x,y)
    d=II()
    if d==0:exit()
    return d

# def ask(x, y):
#     a, b = 2, 5
#     print(x, y)
#     d = abs(x-a)+abs(y-b)
#     print(d)
#     if d == 0: exit()
#     return d

l, r = -1, 100000
while l+1 < r:
    m = (l+r)//2
    if ask(m, 0) > ask(m+1, 0): l = m
    else: r = m
x = r

l, r = -1, 100000
while l+1 < r:
    m = (l+r)//2
    if ask(x, m) > ask(x, m+1): l = m
    else: r = m
0