結果
| 問題 |
No.3069 Invisible Speedrun
|
| コンテスト | |
| ユーザー |
Ponzu
|
| 提出日時 | 2025-03-21 22:23:42 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 303 bytes |
| コンパイル時間 | 1,202 ms |
| コンパイル使用メモリ | 83,644 KB |
| 実行使用メモリ | 26,468 KB |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2025-03-21 22:23:52 |
| 合計ジャッジ時間 | 7,610 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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 << 'R' << endl;
else cout << 'D' << endl;
char c;
cin >> c;
if(c!=0) return 0;
}
}
Ponzu