結果

問題 No.253 ロウソクの長さ
ユーザー YOS G-specYOS G-spec
提出日時 2018-10-18 23:06:40
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 58,248 KB
平均クエリ数 21.22
最終ジャッジ日時 2024-07-17 02:00:01
合計ジャッジ時間 6,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
57,808 KB
testcase_01 AC 74 ms
57,544 KB
testcase_02 AC 76 ms
57,416 KB
testcase_03 AC 76 ms
57,672 KB
testcase_04 AC 75 ms
57,928 KB
testcase_05 AC 74 ms
57,160 KB
testcase_06 AC 78 ms
57,800 KB
testcase_07 AC 78 ms
57,544 KB
testcase_08 AC 78 ms
57,800 KB
testcase_09 AC 75 ms
57,928 KB
testcase_10 AC 79 ms
58,184 KB
testcase_11 AC 77 ms
57,800 KB
testcase_12 AC 78 ms
57,672 KB
testcase_13 AC 78 ms
58,056 KB
testcase_14 AC 75 ms
57,672 KB
testcase_15 AC 75 ms
58,184 KB
testcase_16 AC 74 ms
57,592 KB
testcase_17 AC 73 ms
57,456 KB
testcase_18 AC 79 ms
57,416 KB
testcase_19 AC 75 ms
57,160 KB
testcase_20 AC 78 ms
57,672 KB
testcase_21 AC 73 ms
57,416 KB
testcase_22 AC 74 ms
57,672 KB
testcase_23 AC 79 ms
58,056 KB
testcase_24 AC 75 ms
58,056 KB
testcase_25 AC 80 ms
57,800 KB
testcase_26 AC 78 ms
57,672 KB
testcase_27 AC 77 ms
57,288 KB
testcase_28 AC 79 ms
57,928 KB
testcase_29 AC 77 ms
57,928 KB
testcase_30 AC 77 ms
57,928 KB
testcase_31 AC 78 ms
57,800 KB
testcase_32 AC 76 ms
57,416 KB
testcase_33 AC 79 ms
58,248 KB
testcase_34 AC 76 ms
57,800 KB
testcase_35 AC 79 ms
57,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const rl=require("readline").createInterface(process.stdin,process.stdout);

const g=function*(){
	var numMin=10;
	var numMax=1000000001;
	var turn=0;
	for(;;){
		var chkNum=turn==0? 100: 0|(numMin+numMax)/2;
		var chk=yield rl.question(`? ${chkNum}\n`,s=>g.next(s));
		if(chk=="1") numMin=chkNum;
		else if(chk=="-1") numMax=chkNum;
		else{
			console.log(`! ${chkNum+turn}`);
			break;
		}
		if(0<numMin) numMin--;
		numMax--;
		turn++;
	}
	process.exit();
}();
g.next();
0