結果

問題 No.2228 Creeping Ghost
ユーザー 👑 timitimi
提出日時 2023-02-24 22:45:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 91 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 87,256 KB
実行使用メモリ 76,088 KB
最終ジャッジ日時 2023-10-11 06:39:44
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,464 KB
testcase_01 AC 75 ms
71,300 KB
testcase_02 AC 74 ms
71,400 KB
testcase_03 AC 74 ms
71,540 KB
testcase_04 AC 74 ms
71,400 KB
testcase_05 AC 78 ms
75,896 KB
testcase_06 AC 75 ms
73,680 KB
testcase_07 AC 77 ms
76,088 KB
testcase_08 AC 78 ms
75,696 KB
testcase_09 AC 75 ms
73,956 KB
testcase_10 AC 77 ms
73,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A='DDDRRRUUDUDLDDLLRLRURRUU'
B='DUDLDDLLRLRURRUU'
T=int(input())
C=A+B*(T//12)
print(C[:T])
0