結果
問題 | No.392 2分木をたどれ |
ユーザー | tenten |
提出日時 | 2020-10-14 18:16:13 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 251 ms / 2,000 ms |
コード長 | 615 bytes |
コンパイル時間 | 2,278 ms |
コンパイル使用メモリ | 74,900 KB |
実行使用メモリ | 45,604 KB |
最終ジャッジ日時 | 2024-07-20 19:14:56 |
合計ジャッジ時間 | 3,492 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,340 KB |
testcase_01 | AC | 250 ms
45,604 KB |
testcase_02 | AC | 251 ms
45,428 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { int x = sc.nextInt(); StringBuilder tmp = new StringBuilder(); while (x > 0) { if (x % 2 == 0) { x--; tmp.append("R"); } else { tmp.append("L"); } x /= 2; } sb.append(tmp.reverse()).append("\n"); } System.out.print(sb); } }