結果
問題 | No.3069 Invisible Speedrun |
ユーザー |
![]() |
提出日時 | 2025-03-21 21:36:32 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 103 ms / 2,000 ms |
コード長 | 321 bytes |
コンパイル時間 | 3,878 ms |
コンパイル使用メモリ | 273,860 KB |
実行使用メモリ | 25,972 KB |
平均クエリ数 | 585.15 |
最終ジャッジ日時 | 2025-03-21 21:36:45 |
合計ジャッジ時間 | 11,607 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 80 |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,N) for(i=0;i<N;i++) #define ll long long int main(void){ ll N; ll i,j,k; cin>>N; rep(i,2*N){ if(i%2)cout<<"D"<<endl; else cout<<"R"<<endl; bool goal; cin>>goal; if(goal) return 0; } return 0; }