結果

問題 No.253 ロウソクの長さ
ユーザー finefine
提出日時 2016-04-05 01:08:44
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,168 KB
平均クエリ数 29.92
最終ジャッジ日時 2024-07-16 09:45:07
合計ジャッジ時間 6,883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
28,616 KB
testcase_01 AC 103 ms
28,632 KB
testcase_02 AC 99 ms
28,888 KB
testcase_03 AC 106 ms
28,536 KB
testcase_04 WA -
testcase_05 AC 106 ms
29,144 KB
testcase_06 AC 103 ms
28,504 KB
testcase_07 AC 103 ms
28,760 KB
testcase_08 AC 105 ms
29,144 KB
testcase_09 WA -
testcase_10 AC 101 ms
28,632 KB
testcase_11 AC 100 ms
28,632 KB
testcase_12 AC 101 ms
28,944 KB
testcase_13 AC 99 ms
28,888 KB
testcase_14 WA -
testcase_15 AC 100 ms
28,760 KB
testcase_16 AC 103 ms
28,888 KB
testcase_17 AC 101 ms
29,144 KB
testcase_18 AC 96 ms
28,760 KB
testcase_19 WA -
testcase_20 AC 99 ms
28,760 KB
testcase_21 AC 98 ms
28,888 KB
testcase_22 WA -
testcase_23 AC 98 ms
29,016 KB
testcase_24 AC 101 ms
28,632 KB
testcase_25 AC 104 ms
28,632 KB
testcase_26 AC 99 ms
28,760 KB
testcase_27 AC 103 ms
28,504 KB
testcase_28 AC 101 ms
29,016 KB
testcase_29 AC 99 ms
28,888 KB
testcase_30 AC 99 ms
28,504 KB
testcase_31 AC 101 ms
28,624 KB
testcase_32 AC 101 ms
28,888 KB
testcase_33 AC 101 ms
29,016 KB
testcase_34 WA -
testcase_35 AC 100 ms
28,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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