結果

問題 No.253 ロウソクの長さ
ユーザー finefine
提出日時 2016-04-05 01:13:14
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,256 KB
平均クエリ数 27.00
最終ジャッジ日時 2024-07-16 09:45:24
合計ジャッジ時間 10,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
29,256 KB
testcase_01 AC 117 ms
28,632 KB
testcase_02 AC 116 ms
28,760 KB
testcase_03 AC 115 ms
29,016 KB
testcase_04 AC 118 ms
29,016 KB
testcase_05 AC 111 ms
28,632 KB
testcase_06 AC 114 ms
28,888 KB
testcase_07 AC 114 ms
28,888 KB
testcase_08 AC 114 ms
28,888 KB
testcase_09 WA -
testcase_10 AC 119 ms
29,040 KB
testcase_11 AC 116 ms
29,144 KB
testcase_12 AC 116 ms
28,888 KB
testcase_13 AC 114 ms
29,144 KB
testcase_14 WA -
testcase_15 AC 132 ms
28,376 KB
testcase_16 AC 133 ms
28,888 KB
testcase_17 AC 128 ms
28,632 KB
testcase_18 AC 130 ms
28,632 KB
testcase_19 WA -
testcase_20 AC 134 ms
28,888 KB
testcase_21 AC 129 ms
28,888 KB
testcase_22 WA -
testcase_23 AC 123 ms
28,376 KB
testcase_24 AC 117 ms
28,888 KB
testcase_25 AC 119 ms
28,888 KB
testcase_26 AC 116 ms
28,504 KB
testcase_27 AC 132 ms
28,376 KB
testcase_28 AC 130 ms
28,632 KB
testcase_29 AC 134 ms
28,888 KB
testcase_30 AC 134 ms
28,632 KB
testcase_31 AC 130 ms
28,376 KB
testcase_32 AC 122 ms
28,760 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

l = 10
r = 1000000000
c = 0
loop{
    y = (l + r) / 2
    puts "? #{[y - c,0].max}"
    STDOUT.flush
    ans = gets.to_i
    if ans == 0
        puts "! #{y}"
        STDOUT.flush
        break
    elsif ans > 0
        l = y
    else
        r = y
    end
    c += 1
    }
0