結果

問題 No.2228 Creeping Ghost
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-12-18 14:50:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 2,851 ms
コンパイル使用メモリ 78,256 KB
実行使用メモリ 48,292 KB
最終ジャッジ日時 2024-11-17 23:27:08
合計ジャッジ時間 5,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
47,344 KB
testcase_01 AC 135 ms
47,984 KB
testcase_02 AC 152 ms
48,152 KB
testcase_03 AC 154 ms
48,012 KB
testcase_04 AC 127 ms
47,628 KB
testcase_05 AC 156 ms
47,268 KB
testcase_06 AC 176 ms
47,960 KB
testcase_07 AC 179 ms
48,292 KB
testcase_08 AC 161 ms
47,352 KB
testcase_09 AC 154 ms
47,320 KB
testcase_10 AC 153 ms
47,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Main{
  public static void main(String args[]){
    Scanner scan = new Scanner(System.in);
    int n=scan.nextInt();
    StringBuffer buf = new StringBuffer();
    buf.append("RRRDDLLLDD");
    for (int i = 0; i < 100000; i++){
    	buf.append("RRRRUUUULLLLDDDD");
    }
    String str = buf.toString();
    System.out.println(str.substring(0, n));
  }
}
0