結果
問題 | No.392 2分木をたどれ |
ユーザー |
![]() |
提出日時 | 2016-07-12 00:41:53 |
言語 | C# (csc 3.9.0) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 1,101 bytes |
コンパイル時間 | 2,535 ms |
使用メモリ | 20,804 KB |
最終ジャッジ日時 | 2022-12-08 16:43:58 |
合計ジャッジ時間 | 3,192 ms |
ジャッジサーバーID (参考情報) |
judge12 / judge13 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
20,700 KB |
testcase_01 | AC | 65 ms
20,804 KB |
testcase_02 | AC | 66 ms
18,784 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ int M = ri(); for(;M>0;M--){ int a = ri(); List<char> L = new List<char>(); while(a != 0){ L.Add( a%2 == 0 ? 'R':'L' ); a = (a-1)/2; } L.Reverse(); Console.WriteLine(new String(L.ToArray())); } } public Sol(){ } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} }