結果
| 問題 | No.3011 あ、俺こいつの役やりたい! |
| コンテスト | |
| ユーザー |
hatsuka_iwa
|
| 提出日時 | 2025-01-25 13:00:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 2,000 ms |
| コード長 | 161 bytes |
| コンパイル時間 | 1,245 ms |
| コンパイル使用メモリ | 161,000 KB |
| 実行使用メモリ | 26,240 KB |
| 平均クエリ数 | 11.66 |
| 最終ジャッジ日時 | 2025-01-25 22:29:25 |
| 合計ジャッジ時間 | 4,432 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 44 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int x = (1 << 29), r = 0;
while (r == 0) {
cout << x << endl;
cin >> r;
x /= 2;
}
}
hatsuka_iwa