結果
問題 | No.246 質問と回答 |
ユーザー | buko106 |
提出日時 | 2015-12-10 16:47:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,033 bytes |
コンパイル時間 | 1,055 ms |
コンパイル使用メモリ | 90,316 KB |
実行使用メモリ | 43,172 KB |
最終ジャッジ日時 | 2024-07-16 19:57:26 |
合計ジャッジ時間 | 7,084 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
#include<cstdio> #include<cstring> #include<cctype> #include<cmath> #include<climits> #include<algorithm> #include<vector> #include<valarray> #include<string> #include<set> #include<map> #include<stack> #include<queue> #include<iostream> #include<iomanip> using namespace std; #define rep(i,n) for(int i=0;i<n;i++) #define REP(i,n) for(int i=1;i<=n;i++) #define drep(i,n) for(int i=n-1;i>=0;i--) #define DREP(i,n) for(int i=n;i>0;i--) #define Rep(i,m,n) for(int i=m;i<n;i++) #define ReP(i,m,n) for(int i=m;i<=n;i++) #define scani(a) scanf("%d",&a) #define scand(a) scanf("%lf",&a) #define scans(s) scanf("%s",s) #define readi(a) int a;scanf("%d",&a) #define printi(a) printf("%d",a) #define prints(s) printf("%s",s) #define even(n) (((n)+1)%2) #define odd(n) ((n)%2) #define sg(x) ((x)?1:0) #define LF printf("\n") #define SPACE printf(" ") #define pb push_back #define mp make_pair #define bs binary_search #define all(a) (a).begin(),(a).end() #define forall(itr,a) for(auto itr=(a).begin();itr!=(a).end();++itr) typedef long long LL; typedef vector<int> vi; typedef vector<vector<int>> vvi; typedef pair<double,double> pdd; typedef pair<int,int> pii; const double pi = acos(-1.0); double rad(double t){return t*pi/180.0;} double deg(double d){return d*180.0/pi;} template<typename T>T GCD(T x,T y){return y?GCD(y,x%y):x;} template<typename T>T LCM(T x,T y){return x/GCD(x,y)*y;} template<class T>ostream& operator<<(ostream& os,const set<T>& s){os<<"{";for(auto itr=s.begin();s.end() != itr;++itr){if(itr!=s.begin())os<<',';os<<*itr;}os<<"}";return os;} template<class S,class T>ostream& operator<<(ostream& os,const pair<S,T>& p){os<<'('<<p.first<<','<<p.second<<')';return os;} const int MOD = (int)pow(10,9) +7; int main(){ ios::sync_with_stdio(false); int left=1,right=(int)pow(10,9); while(true){ int med=(left+right)/2,res; cout << "? " << med << flush; cin >> res; if(res)left=med; else right= med; if(left+1 == right)break; } cout << "! " << left << flush; return 0; }