結果
| 問題 |
No.3069 Invisible Speedrun
|
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-10-13 01:02:43 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 83 ms / 2,000 ms |
| コード長 | 340 bytes |
| コンパイル時間 | 2,926 ms |
| コンパイル使用メモリ | 275,344 KB |
| 実行使用メモリ | 26,228 KB |
| 平均クエリ数 | 585.15 |
| 最終ジャッジ日時 | 2025-10-13 01:02:55 |
| 合計ジャッジ時間 | 11,724 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 80 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
int n;
cin >> n;
int x = 0;
while (true) {
cout << "DR"[x] << endl;
x = (x + 1) % 2;
int v;
cin >> v;
if (v == 1 || v == -1) break;
}
return 0;
}
a01sa01to