結果

問題 No.253 ロウソクの長さ
ユーザー PulmnPulmn
提出日時 2018-07-19 17:58:21
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,025 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 143,900 KB
実行使用メモリ 35,984 KB
最終ジャッジ日時 2023-09-23 16:10:20
合計ジャッジ時間 7,632 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define syosu(x) fixed<<setprecision(x)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> P;
typedef pair<double,double> pdd;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<double> vd;
typedef vector<vd> vvd;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<string> vs;
typedef vector<P> vp;
typedef vector<vp> vvp;
typedef vector<pll> vpll;
typedef pair<int,P> pip;
typedef vector<pip> vip;
const int inf=1<<30;
const ll INF=1ll<<60;
const double pi=acos(-1);
const double eps=1e-8;
const ull mod=1e9+7;
const int dx[4]={-1,0,1,0},dy[4]={0,-1,0,1};

int res;

int Q(int x){
	cout<<"? "<<x<<endl;
	int t;
	cin>>t;
	return t;
}

int f(){
	for(int i=0;i<50;i++){
		int t=Q(i+11);
		if(t==0) return 2*i+11;
		if(t==-1) return 2*i+10;
	}
	int l=40,r=inf,i=0;
	while(r-l>1){
		int m=(l+r)/2,t=Q(m-i);
		if(t>=0) l=m;
		else r=m;
		i++;
	}
	return l+50;
}

int main(){
	cin>>res;
	cout<<"! "<<f()<<endl;
}
0