結果
| 問題 | No.3011 あ、俺こいつの役やりたい! |
| コンテスト | |
| ユーザー |
ウチュウジン
|
| 提出日時 | 2025-01-26 22:49:35 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 17 ms / 2,000 ms |
| コード長 | 253 bytes |
| 記録 | |
| コンパイル時間 | 491 ms |
| コンパイル使用メモリ | 72,788 KB |
| 実行使用メモリ | 29,764 KB |
| 平均クエリ数 | 11.50 |
| 最終ジャッジ日時 | 2026-06-24 17:36:29 |
| 合計ジャッジ時間 | 3,943 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 44 |
ソースコード
#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;
}
}
ウチュウジン