結果
問題 | No.392 2分木をたどれ |
ユーザー | ym678 |
提出日時 | 2016-08-05 20:13:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 623 bytes |
コンパイル時間 | 2,165 ms |
コンパイル使用メモリ | 77,864 KB |
実行使用メモリ | 45,728 KB |
最終ジャッジ日時 | 2024-11-07 00:17:14 |
合計ジャッジ時間 | 3,279 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
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(); while(tage[i]>0){ if(tage[i]%2==0){ sb.append("R"); tage[i] = tage[i]/2-1; }else{ sb.append("L"); tage[i] /= 2; } } sb.append("\n"); } System.out.println(sb); sc.close(); } }