結果
| 問題 | No.3011 あ、俺こいつの役やりたい! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-06-29 13:01:07 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 79 ms / 2,000 ms |
| + 1µs | |
| コード長 | 220 bytes |
| 記録 | |
| コンパイル時間 | 797 ms |
| コンパイル使用メモリ | 145,604 KB |
| 実行使用メモリ | 9,400 KB |
| 平均クエリ数 | 11.50 |
| 最終ジャッジ日時 | 2026-07-12 23:08:43 |
| 合計ジャッジ時間 | 2,909 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 44 |
ソースコード
#include <iostream>
int main() {
int M = 30;
int curr = 500000000;
int r;
while (M--) {
std::cout << curr << std::endl;
std::cin >> r;
if (r) return 0;
curr /= 2;
}
}