結果
問題 | No.3069 Invisible Speedrun |
ユーザー |
![]() |
提出日時 | 2025-03-21 21:33:01 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 86 ms / 2,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 1,977 ms |
コンパイル使用メモリ | 191,172 KB |
実行使用メモリ | 25,972 KB |
平均クエリ数 | 585.15 |
最終ジャッジ日時 | 2025-03-21 21:33:11 |
合計ジャッジ時間 | 10,447 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 80 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int N; cin>>N; for(int i=0;i<2*N;i++){ cout<<(i%2 ? 'D' : 'R')<<endl; int a; cin>>a; if(a == 1) return 0; } }