結果
問題 | No.513 宝探し2 |
ユーザー | hedwig100 |
提出日時 | 2020-05-28 12:00:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 551 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 27,736 KB |
平均クエリ数 | 56.00 |
最終ジャッジ日時 | 2024-07-17 02:44:12 |
合計ジャッジ時間 | 1,744 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
26,968 KB |
testcase_01 | AC | 52 ms
27,224 KB |
testcase_02 | AC | 53 ms
27,096 KB |
testcase_03 | AC | 53 ms
27,224 KB |
testcase_04 | AC | 54 ms
27,736 KB |
testcase_05 | AC | 51 ms
27,608 KB |
testcase_06 | AC | 52 ms
27,224 KB |
testcase_07 | AC | 53 ms
27,352 KB |
testcase_08 | AC | 50 ms
27,608 KB |
testcase_09 | AC | 50 ms
27,224 KB |
testcase_10 | AC | 53 ms
27,480 KB |
testcase_11 | AC | 52 ms
27,224 KB |
ソースコード
import sys sys.setrecursionlimit(10000000) MOD = 10 ** 9 + 7 INF = 10 ** 15 def ask(x,y): print(x,y,flush = True) d = int(input()) if d == 0: exit() return d Lx = -1 Rx = 100001 while Rx - Lx > 1: Mx = (Rx + Lx)//2 d1 = ask(Mx,0) d2 = ask(Mx + 1,0) if d1 < d2: Rx = Mx else: Lx = Mx Ly = -1 Ry = 100001 while Ry - Ly > 1: My = (Ry + Ly)//2 d1 = ask(0,My) d2 = ask(0,My + 1) if d1 < d2: Ry = My else: Ly = My ask(Rx,Ry) ask(Lx,Ly) ask(Rx,Ly) ask(Lx,Ry)