結果
問題 | No.513 宝探し2 |
ユーザー | tookunn_1213 |
提出日時 | 2017-05-05 23:59:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 412 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,736 KB |
平均クエリ数 | 32.00 |
最終ジャッジ日時 | 2024-07-16 13:29:57 |
合計ジャッジ時間 | 3,084 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
27,352 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 47 ms
27,608 KB |
ソースコード
import sys def query(p): print(p[0],p[1]) sys.stdout.flush() return int(input()) dis=query((0,0)) def rec(l,r): ll=l+(r-l)//3 rr=(r+l)//2+(r-l)//3 #sys.stderr.write(str(ll)+':') #sys.stderr.write(str(rr)+'\n') #sys.stderr.flush() lll=query((ll,0)) rrr=query((rr,0)) if lll < rrr: return rec(l,(r+l)//2) elif lll > rrr: return rec((r+l)//2,r) else: return lll y=rec(0,dis) x=dis-y query((x,y))