結果
問題 | No.392 2分木をたどれ |
ユーザー |
![]() |
提出日時 | 2016-07-12 00:06:27 |
言語 | C++14 (gcc 11.2.0 + boost 1.78.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 426 bytes |
コンパイル時間 | 1,408 ms |
使用メモリ | 5,156 KB |
最終ジャッジ日時 | 2022-12-08 16:39:40 |
合計ジャッジ時間 | 2,135 ms |
ジャッジサーバーID (参考情報) |
judge14 / judge12 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
4,900 KB |
testcase_01 | AC | 7 ms
5,156 KB |
testcase_02 | AC | 8 ms
4,904 KB |
ソースコード
#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; }