結果

問題 No.253 ロウソクの長さ
ユーザー BantakoBantako
提出日時 2018-06-01 00:23:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 166,424 KB
実行使用メモリ 25,604 KB
平均クエリ数 21.44
最終ジャッジ日時 2024-07-17 01:45:03
合計ジャッジ時間 4,148 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,068 KB
testcase_01 AC 19 ms
25,220 KB
testcase_02 AC 20 ms
25,220 KB
testcase_03 AC 19 ms
25,220 KB
testcase_04 AC 20 ms
24,836 KB
testcase_05 AC 20 ms
24,836 KB
testcase_06 AC 21 ms
25,220 KB
testcase_07 AC 21 ms
25,476 KB
testcase_08 AC 21 ms
25,476 KB
testcase_09 AC 19 ms
25,092 KB
testcase_10 AC 20 ms
25,604 KB
testcase_11 AC 21 ms
24,580 KB
testcase_12 AC 20 ms
25,220 KB
testcase_13 AC 20 ms
24,836 KB
testcase_14 AC 20 ms
24,836 KB
testcase_15 AC 19 ms
24,836 KB
testcase_16 AC 22 ms
24,452 KB
testcase_17 AC 21 ms
24,836 KB
testcase_18 AC 22 ms
24,580 KB
testcase_19 AC 21 ms
24,580 KB
testcase_20 AC 19 ms
25,220 KB
testcase_21 AC 20 ms
25,220 KB
testcase_22 AC 20 ms
24,580 KB
testcase_23 AC 21 ms
25,476 KB
testcase_24 AC 22 ms
25,220 KB
testcase_25 AC 20 ms
24,836 KB
testcase_26 AC 20 ms
25,220 KB
testcase_27 AC 23 ms
25,452 KB
testcase_28 AC 21 ms
25,348 KB
testcase_29 AC 19 ms
24,580 KB
testcase_30 AC 20 ms
24,836 KB
testcase_31 AC 19 ms
24,836 KB
testcase_32 AC 20 ms
25,220 KB
testcase_33 AC 20 ms
25,220 KB
testcase_34 AC 21 ms
25,220 KB
testcase_35 AC 20 ms
25,604 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
using namespace std;
typedef long long ll;
int INF = (1LL << 30) - 1;
int MOD = 1e9+7;
main(){
    int cnt = 1,num;
    cout << "? 100" << endl;
    fflush(0);
    cin >> num;
    int ok,ng;
    if(num == 0){
        cout << "! 100" << endl;
        return 0;
    }else if(num == -1){
       ok = 100,ng = 0;
    }else{
        ok = INF,ng = 10;
    }
    while(num){
        int mid = (ok + ng) / 2;
        cout << "? " << mid - cnt<< endl;
        fflush(0);
        cin >> num;
        if(num == 1)ng = mid;
        else if(num == -1)ok = mid;
        else cout << "! " << mid << endl;
        cnt++;
    }
    fflush(0);

}
0