結果
問題 | No.513 宝探し2 |
ユーザー | siman |
提出日時 | 2020-12-10 17:17:36 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 576 bytes |
コンパイル時間 | 42 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 29,400 KB |
平均クエリ数 | 93.50 |
最終ジャッジ日時 | 2024-07-17 09:58:17 |
合計ジャッジ時間 | 3,431 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
28,248 KB |
testcase_01 | AC | 111 ms
28,760 KB |
testcase_02 | AC | 110 ms
28,632 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 109 ms
28,632 KB |
testcase_06 | WA | - |
testcase_07 | AC | 112 ms
28,632 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
def ternary_search_tree(left, right) loop_cnt = 25 loop_cnt.times do if yield((left * 2 + right) / 3.0) < yield((left + right * 2) / 3.0) right = (left + right * 2) / 3.0 else left = (left * 2 + right) / 3.0 end end (left + right) / 2.0 end cx = 0 cy = 0 cx = ternary_search_tree(0, 100_000) { |x| STDOUT.puts("%d %d" % [x, cy]) STDOUT.flush d = gets.to_i if d == 0 exit end d } cy = ternary_search_tree(0, 100_000) { |y| STDOUT.puts("%d %d" % [cx, y]) STDOUT.flush d = gets.to_i if d == 0 exit end d }