結果
問題 | No.1793 実数当てゲーム |
ユーザー | 👑 Nachia |
提出日時 | 2021-12-22 00:56:03 |
言語 | Text (cat 8.3) |
結果 |
WA
|
実行時間 | - |
コード長 | 446 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 25,728 KB |
平均クエリ数 | 13.00 |
最終ジャッジ日時 | 2024-09-28 13:25:52 |
合計ジャッジ時間 | 1,971 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
最初の解法 全部幾何平均で二分探索する。 x = max_x で大丈夫なので相対誤差保証、かつ x = 0 で大丈夫なので全部大丈夫 最悪な解法 0 < x < 1 について 2e-5 未満の間隔を開けて x を詰める 1 < x < max x について対数で 2e-5 未満の間隔を開けて x を詰める 長さが 2^24 くらいなのでこの配列上で二分探索 最後に ng と ok の算術平均を出力