結果
問題 | No.392 2分木をたどれ |
ユーザー |
|
提出日時 | 2016-08-05 20:28:33 |
言語 | Java17 (openjdk 17.0.1) |
結果 |
AC
|
実行時間 | 302 ms / 2,000 ms |
コード長 | 685 bytes |
コンパイル時間 | 1,822 ms |
使用メモリ | 48,272 KB |
最終ジャッジ日時 | 2022-12-13 03:33:51 |
合計ジャッジ時間 | 3,381 ms |
ジャッジサーバーID (参考情報) |
judge15 / judge10 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
42,264 KB |
testcase_01 | AC | 302 ms
48,272 KB |
testcase_02 | AC | 292 ms
45,712 KB |
ソースコード
import java.util.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int m = sc.nextInt(); int[] tage = new int[m]; StringBuilder sb = new StringBuilder(); for(int i=0; i<m; i++){ tage[i] = sc.nextInt(); int count = 0; while(tage[i]>0){ count ++; if(tage[i]%2==0){ sb.insert(0, "R"); tage[i] = tage[i]/2-1; }else{ sb.insert(0,"L"); tage[i] /= 2; } } System.out.println(sb); sb.delete(0, count); } sc.close(); } }