

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
空の箱があります。
髙橋君は以下の 種類の魔法を好きな順番で好きな回数使えます。
- 魔法 :箱の中にボールを つ増やす
- 魔法 :箱の中のボールの数を 倍にする
合計 回以内の魔法で、箱の中のボールの数をちょうど 個にする方法を つ教えてください。
なお、与えられた制約のもとで条件を満たす方法が必ず存在することが示せます。
魔法以外の方法でボールの数を変化させることはできません。
制約
- 入力は全て整数
入力
入力は以下の形式で標準入力から与えられる。
出力
A
, B
のみからなる文字列 を出力せよ。
の 文字目が A
ならば、髙橋君が 回目に使う魔法が魔法 であることを表し、B
ならば魔法 であることを表す。
の長さは 以下でなければならない。
入力例 1Copy
5
出力例 1Copy
AABA
ボールの数は、 と変化します。
AAAAA
などの答えも正解になります。
入力例 2Copy
14
出力例 2Copy
BBABBAAAB
ボールの数は、 と変化します。
の長さを最小化する必要はありません。
Score : points
Problem Statement
We have an empty box.
Takahashi can cast the following two spells any number of times in any order.
- Spell : puts one new ball into the box.
- Spell : doubles the number of balls in the box.
Tell us a way to have exactly balls in the box with at most casts of spells.
It can be proved that there always exists such a way under the Constraints given.
There is no way other than spells to alter the number of balls in the box.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print a string consisting of A
and B
.
The -th character of should represent the spell for the -th cast.
must have at most characters.
Sample Input 1Copy
5
Sample Output 1Copy
AABA
This changes the number of balls as follows: .
There are also other acceptable outputs, such as AAAAA
.
Sample Input 2Copy
14
Sample Output 2Copy
BBABBAAAB
This changes the number of balls as follows: .
It is not required to minimize the length of .