結果

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

ソースコード

diff #

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

int main(){
	int r,n(1e9);
	while(true){
		cout << (n/=2) << endl;
		cin >> r; if (r) return 0;
	}
}
0