結果

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

テストケース

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

ソースコード

diff #

l = 10
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