結果

問題 No.392 2分木をたどれ
ユーザー かにかに
提出日時 2016-10-11 22:03:20
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 754 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 162,368 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-05-01 19:34:07
合計ジャッジ時間 2,044 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define _CRT_SECURE_NO_WARNINGS
#define rep(i,n) for(int i = 0;i < n;i++)
#define REP(i,n,k) for(int i = n;i < k;i++)
#define P(p) cout << (p) << endl;
#define sP(p) cout << setprecision(15) << fixed << p << endl;
#define Pi pair<int,int>
#define IINF 1e9
#define LINF 1e18
#define vi vector<int>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
int dx[] = { 1, 0,-1,0 };
int dy[] = { 0, 1,0,-1 };

void solve() {
	int m;
	cin >> m;
	rep(i, m) {
		int a;
		cin >> a;
		if (a == 0) {
			P("");
		}
		else {
			a++;
			string s = "";
			while (a > 1) {
				if (a % 2 == 0) {
					s = s + "L";
				}
				else {
					s = s + "R";
				}
				a /= 2;
			}
			P(s);
		}
	}
}

int main() {
	solve();
	return 0;
}
0