結果

問題 No.2228 Creeping Ghost
ユーザー HIcoderHIcoder
提出日時 2024-10-12 19:32:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 1,255 ms
コンパイル使用メモリ 115,704 KB
実行使用メモリ 5,424 KB
最終ジャッジ日時 2024-10-12 19:33:00
合計ジャッジ時間 2,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,420 KB
testcase_01 AC 4 ms
5,420 KB
testcase_02 AC 5 ms
5,420 KB
testcase_03 AC 4 ms
5,424 KB
testcase_04 AC 4 ms
5,424 KB
testcase_05 AC 5 ms
5,424 KB
testcase_06 AC 5 ms
5,292 KB
testcase_07 AC 6 ms
5,296 KB
testcase_08 AC 5 ms
5,296 KB
testcase_09 AC 5 ms
5,300 KB
testcase_10 AC 5 ms
5,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;


int main(){
    int T;
    cin >> T;
    string S = "RRRDDLLLDD";
    for (int i = 0; i < 62500; i++){
        S += "RRRRUUUULLLLDDDD";
    }
    cout << S.substr(0, T) << endl;
}
0