結果

問題 No.3011 あ、俺こいつの役やりたい!
ユーザー VvyLw
提出日時 2025-02-08 14:28:30
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 106,432 KB
実行使用メモリ 26,216 KB
平均クエリ数 11.61
最終ジャッジ日時 2025-02-08 14:28:36
合計ジャッジ時間 4,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#ifdef local
#include <C++/core/io/debug_print.hpp>
#else
#define dump(...) void(0);
#endif

#include <iostream>
#include <ranges>
#include <cassert>
#include <numeric>
namespace man {

}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    using namespace std::views;
    int ok = 1e9, ng = 0, r;
    while(std::abs(ok - ng) > 1) {
    	const auto x = std::midpoint(ok, ng);
    	std::cout << x << std::endl;
    	std::cin >> r;
    	assert(r != -1);
    	if(r == 1) {
    		std::exit(0);
    	}
    	ok = x;
    }
}
0