結果

問題 No.253 ロウソクの長さ
ユーザー nasadigitalnasadigital
提出日時 2015-07-24 23:14:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 65,412 KB
実行使用メモリ 25,476 KB
平均クエリ数 21.11
最終ジャッジ日時 2024-07-16 20:49:05
合計ジャッジ時間 3,633 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,052 KB
testcase_01 AC 25 ms
24,836 KB
testcase_02 AC 26 ms
25,220 KB
testcase_03 AC 24 ms
25,220 KB
testcase_04 AC 25 ms
24,964 KB
testcase_05 AC 25 ms
25,220 KB
testcase_06 AC 26 ms
24,964 KB
testcase_07 AC 25 ms
24,836 KB
testcase_08 AC 26 ms
25,220 KB
testcase_09 AC 24 ms
25,220 KB
testcase_10 AC 26 ms
24,580 KB
testcase_11 AC 26 ms
24,836 KB
testcase_12 AC 26 ms
25,220 KB
testcase_13 AC 25 ms
24,824 KB
testcase_14 AC 24 ms
24,952 KB
testcase_15 AC 24 ms
24,836 KB
testcase_16 AC 24 ms
24,836 KB
testcase_17 AC 24 ms
24,580 KB
testcase_18 AC 25 ms
24,964 KB
testcase_19 AC 24 ms
25,220 KB
testcase_20 AC 25 ms
25,476 KB
testcase_21 AC 24 ms
25,220 KB
testcase_22 AC 25 ms
24,580 KB
testcase_23 AC 24 ms
24,964 KB
testcase_24 AC 24 ms
24,836 KB
testcase_25 AC 27 ms
24,580 KB
testcase_26 AC 24 ms
24,836 KB
testcase_27 AC 25 ms
25,220 KB
testcase_28 AC 26 ms
24,836 KB
testcase_29 AC 25 ms
24,580 KB
testcase_30 AC 25 ms
25,472 KB
testcase_31 AC 25 ms
25,208 KB
testcase_32 AC 26 ms
24,836 KB
testcase_33 AC 26 ms
24,836 KB
testcase_34 AC 26 ms
25,220 KB
testcase_35 AC 26 ms
24,836 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:54:13: warning: ‘rez’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   54 | cout<<"! "<<rez<<endl;
      |             ^~~

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <utility>
#include <algorithm>
#include <vector>
#include <cstring>

#define _P(x) printf(x);
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))

using namespace std;

typedef vector<int> vi;
typedef pair<int,int> ii;
typedef long long ll;



int main(){

int sec=0;
int l=10,r=1e9;
int rez;
int a;
cout<<"? 101"<<endl;
cin>>a;
if(a==-1)
r=100;
else if(a==0){
	cout<<"! "<<101<<endl;
	return 0;
}
else l=102;
sec++;
while(l<=r){
int mid=(l+r)/2-sec;
cout<<"? "<<mid<<endl;
cin>>a;
if(a==0){
rez=mid+sec;
break;
}
if(a==1){
l=mid+sec+1;
rez=mid+sec;	
}
if(a==-1)
r=mid+sec-1;
sec++;
}
cout<<"! "<<rez<<endl;
return 0;
}
0