結果
問題 | No.392 2分木をたどれ |
ユーザー | btk |
提出日時 | 2016-07-12 00:50:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 10 ms / 2,000 ms |
コード長 | 278 bytes |
コンパイル時間 | 1,625 ms |
コンパイル使用メモリ | 168,616 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 14:09:41 |
合計ジャッジ時間 | 2,033 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 10 ms
5,248 KB |
testcase_02 | AC | 10 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int T; cin>>T; while(T--){ int A; cin>>A; string res; while(A){ if(A&1)res+="L"; else res+="R"; A--; A/=2; } reverse(res.begin(),res.end()); cout<<res<<endl; } return 0; }