結果

問題 No.246 質問と回答
ユーザー kotamanegikotamanegi
提出日時 2016-02-12 18:29:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 79,968 KB
実行使用メモリ 25,604 KB
平均クエリ数 101.00
最終ジャッジ日時 2024-07-16 20:00:38
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
25,220 KB
testcase_01 AC 52 ms
25,220 KB
testcase_02 AC 52 ms
24,836 KB
testcase_03 AC 52 ms
25,220 KB
testcase_04 AC 54 ms
24,676 KB
testcase_05 AC 50 ms
25,220 KB
testcase_06 AC 56 ms
24,836 KB
testcase_07 AC 52 ms
24,580 KB
testcase_08 AC 51 ms
25,604 KB
testcase_09 AC 51 ms
24,964 KB
testcase_10 AC 51 ms
24,808 KB
testcase_11 AC 50 ms
25,460 KB
testcase_12 AC 57 ms
25,220 KB
testcase_13 AC 53 ms
24,580 KB
testcase_14 AC 50 ms
25,192 KB
testcase_15 AC 55 ms
24,964 KB
testcase_16 AC 51 ms
25,296 KB
testcase_17 AC 49 ms
24,836 KB
testcase_18 AC 50 ms
25,220 KB
testcase_19 AC 49 ms
25,604 KB
testcase_20 AC 50 ms
25,220 KB
testcase_21 AC 50 ms
24,808 KB
testcase_22 AC 51 ms
24,964 KB
testcase_23 AC 52 ms
24,836 KB
testcase_24 AC 51 ms
24,964 KB
testcase_25 AC 49 ms
24,964 KB
testcase_26 AC 51 ms
25,220 KB
testcase_27 AC 51 ms
25,220 KB
testcase_28 AC 52 ms
25,220 KB
testcase_29 AC 52 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream> 
#include<map>
#include <list>
#include <typeinfo>
using namespace std;
#define REP(a,b) for(long long a = 0;a < b;++a)
int main() {
	long long x_low = 1;
	long long x_high = 1000000000;
	int cnt = 0;
	while (cnt != 100) {
		cnt++;
		long long hoge = (x_high+x_low) / 2;
		cout << "? "<< hoge << endl;
		int a = 0;
		cin >> a;
		if (a == 0) {
			x_high = hoge;
		}
		else {
			x_low = hoge;
		}
	}
	cout << "! " << x_low << endl;
}
0