結果
問題 | No.513 宝探し2 |
ユーザー | kohei2019 |
提出日時 | 2022-05-15 13:36:12 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 768 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 82,352 KB |
実行使用メモリ | 83,800 KB |
平均クエリ数 | 57.08 |
最終ジャッジ日時 | 2024-07-26 20:16:26 |
合計ジャッジ時間 | 3,334 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 63 ms
69,676 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 61 ms
70,432 KB |
testcase_09 | AC | 61 ms
68,932 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
ソースコード
# 整数版三分探索実装 def func(arg): print(arg,0) a = int(input()) if a == 0: exit() return a def sanbunntan(l,r): while l + 2 < r: c1 = l+(r-l)//3 c2 = r-(r-l)//3 if func(c1)<func(c2): r = c2 else: l = c1 val = sorted([(func(i),i) for i in range(l,r+1)])[0][1] x = sanbunntan(0, 100001) def func(arg): print(0,arg) a = int(input()) if a == 0: exit() return a def sanbunntan(l,r): while l + 2 < r: c1 = l+(r-l)//3 c2 = r-(r-l)//3 if func(c1)<func(c2): r = c2 else: l = c1 val = sorted([(func(i),i) for i in range(l,r+1)])[0][1] y = sanbunntan(x, 100001) print(x,y) int(input())