結果

問題 No.392 2分木をたどれ
ユーザー かにかに
提出日時 2016-10-11 22:04:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 147,112 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-14 06:51:25
合計ジャッジ時間 1,637 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 9 ms
4,376 KB
testcase_02 AC 9 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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;
			}
			reverse(s.begin(), s.end());
			P(s);
		}
	}
}

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