結果
問題 | No.392 2分木をたどれ |
ユーザー | かに |
提出日時 | 2016-10-11 22:03:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 754 bytes |
コンパイル時間 | 1,399 ms |
コンパイル使用メモリ | 160,268 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-22 01:44:16 |
合計ジャッジ時間 | 1,877 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#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; }