結果
問題 |
No.3069 Invisible Speedrun
|
ユーザー |
![]() |
提出日時 | 2025-03-21 22:23:13 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 303 bytes |
コンパイル時間 | 744 ms |
コンパイル使用メモリ | 83,988 KB |
実行使用メモリ | 26,356 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2025-03-21 22:23:28 |
合計ジャッジ時間 | 7,692 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 80 |
ソースコード
#include<iostream> #include<vector> using namespace std; const int di[] = {0,-1,0,1}; const int dj[] = {1,0,-1,0}; int main() { int N; cin >> N; string cmd = "LURD"; for(int i=0;i<2*N;++i) { if(i&1)cout << 'L' << endl; else cout << 'D' << endl; char c; cin >> c; if(c!=0) return 0; } }