結果

問題 No.3011 あ、俺こいつの役やりたい!
ユーザー ZOI-dayo
提出日時 2025-02-22 01:38:54
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 3,877 ms
コンパイル使用メモリ 273,984 KB
実行使用メモリ 26,240 KB
平均クエリ数 12.45
最終ジャッジ日時 2025-02-22 01:39:03
合計ジャッジ時間 7,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int n = 1'000'000'000;
  while(true) {
    cout << n << endl;
    int ans;
    cin >> ans;
    if(ans ==1) {
      break;
    }
    n /= 2;
  }
}
0