結果

問題 No.2228 Creeping Ghost
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-05 02:39:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 1,145 ms
コンパイル使用メモリ 104,576 KB
実行使用メモリ 34,252 KB
最終ジャッジ日時 2024-05-02 04:35:28
合計ジャッジ時間 2,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
34,252 KB
testcase_01 AC 43 ms
34,132 KB
testcase_02 AC 44 ms
34,052 KB
testcase_03 AC 44 ms
34,252 KB
testcase_04 AC 44 ms
34,128 KB
testcase_05 AC 45 ms
34,132 KB
testcase_06 AC 45 ms
34,128 KB
testcase_07 AC 45 ms
34,092 KB
testcase_08 AC 45 ms
34,128 KB
testcase_09 AC 44 ms
34,128 KB
testcase_10 AC 44 ms
34,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <sstream>

using namespace std;

int main(){

    int T;
    cin >> T;
    string S="RRRDDLLL";
    for (int i=0; i<1e6; i++) S += "DDRRRRUUUULLLLDD";
    cout << S.substr(0, T) << endl;

    return 0;
}
0