結果

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

テストケース

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

ソースコード

diff #

l = 9
r = 1000000001
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