結果
問題 | No.1793 実数当てゲーム |
ユーザー | とりゐ |
提出日時 | 2021-11-19 15:36:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,145 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 81,848 KB |
実行使用メモリ | 94,268 KB |
平均クエリ数 | 2230.56 |
最終ジャッジ日時 | 2024-09-28 13:20:18 |
合計ジャッジ時間 | 5,686 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 70 ms
69,920 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 229 ms
93,736 KB |
testcase_06 | AC | 247 ms
93,644 KB |
testcase_07 | AC | 234 ms
93,492 KB |
testcase_08 | AC | 226 ms
93,896 KB |
testcase_09 | AC | 219 ms
93,700 KB |
testcase_10 | AC | 218 ms
93,196 KB |
testcase_11 | AC | 232 ms
93,416 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
from sys import stdout import math ''' 2^24=16777216=1.67*10^7 なので普通に二分探索をすると不十分 y が小さいなら絶対誤差が 10^-5 以下,大きいなら相対誤差が 10^-5 以下になるようにしてやるといい 最初に 167.77216 で二分探索を行ってみる これより大きければ対数を取って二分探索をしてみる ---> 相加平均,相乗平均だとだめで,調和平均が良さそう ''' def solve(): print('?',167.77216) stdout.flush() s=input() if s=='Yes': l,r=167.77216,1222*10**72 for i in range(23): mid=2/(1/l+1/r) print('?','{:.06f}'.format(mid)) stdout.flush() s=input() if s=='Yes': l=mid else: r=mid mid=2/(1/l+1/r) print('!','{:.06f}'.format((l+r)/2)) stdout.flush() elif s=='No': l,r=0,167.77216 for i in range(23): mid=(l+r)/2 print('?','{:.06f}'.format(mid)) stdout.flush() s=input() if s=='Yes': l=mid else: r=mid print('!','{:.06f}'.format((l+r)/2)) stdout.flush() t=int(input()) while t: solve() t-=1