結果

問題 No.246 質問と回答
ユーザー kotatsugamekotatsugame
提出日時 2016-10-30 09:10:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 64,024 KB
実行使用メモリ 25,476 KB
平均クエリ数 31.00
最終ジャッジ日時 2024-07-16 11:19:12
合計ジャッジ時間 4,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 54 ms
25,220 KB
testcase_03 AC 55 ms
25,040 KB
testcase_04 AC 56 ms
24,580 KB
testcase_05 WA -
testcase_06 AC 61 ms
24,580 KB
testcase_07 AC 56 ms
25,220 KB
testcase_08 AC 55 ms
24,580 KB
testcase_09 WA -
testcase_10 AC 58 ms
24,836 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 61 ms
24,580 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 56 ms
24,836 KB
testcase_21 AC 58 ms
24,964 KB
testcase_22 AC 61 ms
25,220 KB
testcase_23 WA -
testcase_24 AC 55 ms
25,220 KB
testcase_25 AC 58 ms
24,824 KB
testcase_26 WA -
testcase_27 AC 56 ms
24,836 KB
testcase_28 WA -
testcase_29 AC 58 ms
25,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    2 | main(){
      | ^~~~

ソースコード

diff #

#include <iostream>
main(){
	int l=1,a,d=1e9;
	while(d)
	{
		d/=2;
		printf("? %d\n",l+d);std::cin>>a;
		if(a)l+=d;
	}
	printf("! %d\n",l);
}
0