結果

問題 No.3011 あ、俺こいつの役やりたい!
ユーザー ウチュウジン
提出日時 2025-01-26 22:49:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 60,700 KB
実行使用メモリ 26,240 KB
平均クエリ数 11.50
最終ジャッジ日時 2025-01-26 22:49:40
合計ジャッジ時間 4,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

int main(){
        int r;
        int x = 1e9/2;
        cout << x << endl;
        cin >> r;
        while(r==0){
                x /= 2;
                cout << x << endl;
                cin >> r;
        }
}
0