結果
問題 | No.1793 実数当てゲーム |
ユーザー | とりゐ |
提出日時 | 2021-11-17 16:32:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 689 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 93,888 KB |
平均クエリ数 | 2230.56 |
最終ジャッジ日時 | 2024-09-28 13:20:28 |
合計ジャッジ時間 | 5,475 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
68,832 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 218 ms
93,336 KB |
testcase_06 | AC | 225 ms
93,288 KB |
testcase_07 | AC | 217 ms
93,664 KB |
testcase_08 | AC | 206 ms
93,396 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 233 ms
93,888 KB |
testcase_14 | AC | 220 ms
93,400 KB |
testcase_15 | WA | - |
testcase_16 | AC | 222 ms
93,016 KB |
testcase_17 | WA | - |
ソースコード
from sys import stdout ''' 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 else: l,r=0,167.77216 for i in range(23): mid=(l+r)/2 print('?','{:.09f}'.format(mid)) stdout.flush() s=input() if s=='Yes': l=mid else: r=mid print('!','{:.09f}'.format((l+r)/2)) stdout.flush() t=int(input()) while t: solve() t-=1