結果

問題 No.253 ロウソクの長さ
ユーザー latte0119latte0119
提出日時 2015-08-06 12:41:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 1,273 ms
コンパイル使用メモリ 157,276 KB
実行使用メモリ 25,220 KB
平均クエリ数 22.08
最終ジャッジ日時 2024-07-16 21:10:04
合計ジャッジ時間 3,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,196 KB
testcase_01 AC 20 ms
24,580 KB
testcase_02 AC 21 ms
24,836 KB
testcase_03 AC 21 ms
24,580 KB
testcase_04 AC 20 ms
24,836 KB
testcase_05 AC 20 ms
24,836 KB
testcase_06 AC 21 ms
24,836 KB
testcase_07 AC 21 ms
24,964 KB
testcase_08 AC 21 ms
24,836 KB
testcase_09 AC 19 ms
25,220 KB
testcase_10 AC 21 ms
24,580 KB
testcase_11 AC 21 ms
25,220 KB
testcase_12 AC 20 ms
24,964 KB
testcase_13 AC 21 ms
25,092 KB
testcase_14 AC 20 ms
24,580 KB
testcase_15 AC 20 ms
24,836 KB
testcase_16 AC 19 ms
24,964 KB
testcase_17 AC 20 ms
25,220 KB
testcase_18 AC 21 ms
24,580 KB
testcase_19 AC 20 ms
24,836 KB
testcase_20 AC 20 ms
24,836 KB
testcase_21 AC 19 ms
24,580 KB
testcase_22 AC 20 ms
24,836 KB
testcase_23 AC 22 ms
24,836 KB
testcase_24 AC 20 ms
24,836 KB
testcase_25 AC 21 ms
24,836 KB
testcase_26 AC 20 ms
24,836 KB
testcase_27 AC 19 ms
25,220 KB
testcase_28 AC 22 ms
24,836 KB
testcase_29 AC 21 ms
24,580 KB
testcase_30 AC 21 ms
24,580 KB
testcase_31 AC 20 ms
24,836 KB
testcase_32 AC 21 ms
25,220 KB
testcase_33 AC 21 ms
24,836 KB
testcase_34 AC 20 ms
25,220 KB
testcase_35 AC 20 ms
24,580 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int ask(int)’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d",&res);
      |     ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int ask(int Y){
    printf("? %d\n",Y);
    fflush(stdout);
    int res;
    scanf("%d",&res);
    return res;
}

int main(){
    int ub,lb,cnt=1;
    if(ask(100)==-1){
        ub=100;
        lb=0;
    }
    else{
        ub=1e9;
        lb=0;
    }

    while(ub-lb>1){

        int mid=(ub+lb)/2;
        int r=ask(mid);
        if(r==1)lb=mid;
        else if(r==-1)ub=mid;
        else{
            printf("! %d\n",mid+cnt);
            fflush(stdout);
            return 0;
        }
        cnt++;
        ub--;
        lb--;
    }
    return 0;
}
0