結果

問題 No.2228 Creeping Ghost
ユーザー HIcoderHIcoder
提出日時 2024-10-12 19:26:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 564 bytes
コンパイル時間 1,295 ms
コンパイル使用メモリ 118,924 KB
実行使用メモリ 21,124 KB
最終ジャッジ日時 2024-10-12 19:27:07
合計ジャッジ時間 8,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

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 ans="RRRDDLLLDD";

    for(int t=0;t<100000;t++){
        ans=ans+"RRRRUUUULLLLDDDD";
    }

    cout<<ans.substr(0,T)<<endl;
}
0