結果

問題 No.392 2分木をたどれ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 16:50:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 76,164 KB
実行使用メモリ 58,392 KB
最終ジャッジ日時 2024-11-26 02:20:13
合計ジャッジ時間 3,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,228 KB
testcase_01 AC 291 ms
58,320 KB
testcase_02 AC 292 ms
58,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int m = sc.nextInt();
        for(int i=0; i<m; i++){
            int A = sc.nextInt();
            String S = Integer.toBinaryString(A+1);
            String t = "";
            for(int j=1; j<S.length(); j++){
                if( S.charAt(j)=='0'){
                    t=t+"L";
                }else{
                    t=t+"R";
                }
            }
            System.out.println(t);
        }
    }
}
0