結果

問題 No.392 2分木をたどれ
ユーザー alpha_virginisalpha_virginis
提出日時 2016-07-12 00:06:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 1,604 ms
コンパイル使用メモリ 163,200 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-22 15:01:37
合計ジャッジ時間 2,054 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

std::string calc(int num) {
  std::string res;
  while( num != 0 ) {
    res.push_back( num == (num - 1) / 2 * 2 + 1 ? 'L' : 'R' );
    num = (num - 1) / 2;
  }
  std::reverse(res.begin(), res.end());
  return res;
}

int main() {
  int n;
  scanf("%d", &n);
  int a;
  for(int i = 0; i < n; ++i) {
    scanf("%d", &a);
    auto res = calc(a);
    std::cout << res << std::endl;
  }
  
  return 0;
}
0