結果
| 問題 | 
                            No.246 質問と回答
                             | 
                    
| コンテスト | |
| ユーザー | 
                             JohnNakazawa
                         | 
                    
| 提出日時 | 2015-07-17 22:39:07 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,612 bytes | 
| コンパイル時間 | 1,551 ms | 
| コンパイル使用メモリ | 159,664 KB | 
| 実行使用メモリ | 25,476 KB | 
| 平均クエリ数 | 101.00 | 
| 最終ジャッジ日時 | 2024-07-16 06:52:29 | 
| 合計ジャッジ時間 | 4,718 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 30 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef ostringstream OSS;
typedef istringstream ISS;
typedef long long LL;
typedef pair<int, int> PII;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<LL> VLL;
typedef vector<VLL> VVLL;
typedef vector<double> VD;
typedef vector<VD> VVD;
typedef vector<string> VS;
typedef vector<VS> VVS;
typedef vector<bool> VB;
typedef vector<VB> VVB;
typedef vector<PII> VPII;
#define fst first
#define snd second
// #define Y first
// #define X second
#define MP make_pair
#define PB push_back
#define EB emplace_back 
#define ALL(x) (x).begin(),(x).end()
#define RANGE(x,y,maxX,maxY) (0 <= (x) && 0 <= (y) && (x) < (maxX) && (y) < (maxY))
#define DUMP( x ) cerr << #x << " = " << ( x ) << endl
#define rep(i, N) for (int i = 0; i < (int)(N); i++)
#define REP(i, init, N) for (int i = (init); i < (int)(N); i++)
template < typename T > inline T fromString(const string &s) { T res; ISS iss(s); iss >> res; return res; };
template < typename T > inline string toString(const T &a) { OSS oss; oss << a; return oss.str(); };
const int INF = 0x3f3f3f3f;
const LL INFL = 0x3f3f3f3f3f3f3f3fLL;
const double DINF = 0x3f3f3f3f;
const int DX[]={1,0,-1,0},DY[]={0,-1,0,1};
const double EPS = 1e-12;
//const double PI = acos(-1.0);
int main(void) {
    LL h = 1;
    LL t = 1000 * 1000 * 1000;
    for (int i = 0; i < 100; i++) {
        int m = (h + t) % 2;
        cout << "? " << m << endl;
        int res;
        cin >> res;
        if (res) {
            h = m;
        } else {
            t = m;
        }
    }
    cout << "! " << h << endl;
	return 0;
}
            
            
            
        
            
JohnNakazawa