結果

問題 No.392 2分木をたどれ
ユーザー alpha_virginisalpha_virginis
提出日時 2016-07-12 00:06:27
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 164,528 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-04 16:55:43
合計ジャッジ時間 2,007 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 7 ms
4,384 KB
testcase_02 AC 8 ms
4,380 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