C - Many Balls Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 300300

問題文

空の箱があります。
髙橋君は以下の 22 種類の魔法を好きな順番で好きな回数使えます。

  • 魔法 AA :箱の中にボールを 11 つ増やす
  • 魔法 BB :箱の中のボールの数を 22 倍にする

合計 120\mathbf{120} 回以内の魔法で、箱の中のボールの数をちょうど NN 個にする方法を 11 つ教えてください。
なお、与えられた制約のもとで条件を満たす方法が必ず存在することが示せます。

魔法以外の方法でボールの数を変化させることはできません。

制約

  • 1N10181 \leq N \leq 10^{18}
  • 入力は全て整数

入力

入力は以下の形式で標準入力から与えられる。

NN

出力

A , B のみからなる文字列 SS を出力せよ。
SSii 文字目が A ならば、髙橋君が ii 回目に使う魔法が魔法 AA であることを表し、B ならば魔法 BB であることを表す。

SS の長さは 120\mathbf{120} 以下でなければならない。


入力例 1Copy

Copy
5

出力例 1Copy

Copy
AABA

ボールの数は、0A1A2B4A50 \xrightarrow{A} 1\xrightarrow{A} 2 \xrightarrow{B}4\xrightarrow{A} 5 と変化します。
AAAAA などの答えも正解になります。


入力例 2Copy

Copy
14

出力例 2Copy

Copy
BBABBAAAB

ボールの数は、0B0B0A1B2B4A5A6A7B140 \xrightarrow{B} 0 \xrightarrow{B} 0 \xrightarrow{A}1 \xrightarrow{B} 2 \xrightarrow{B} 4 \xrightarrow{A}5 \xrightarrow{A}6 \xrightarrow{A} 7 \xrightarrow{B}14 と変化します。
SS の長さを最小化する必要はありません。

Score : 300300 points

Problem Statement

We have an empty box.
Takahashi can cast the following two spells any number of times in any order.

  • Spell AA: puts one new ball into the box.
  • Spell BB: doubles the number of balls in the box.

Tell us a way to have exactly NN balls in the box with at most 120\mathbf{120} 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

  • 1N10181 \leq N \leq 10^{18}
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

Output

Print a string SS consisting of A and B. The ii-th character of SS should represent the spell for the ii-th cast.

SS must have at most 120\mathbf{120} characters.


Sample Input 1Copy

Copy
5

Sample Output 1Copy

Copy
AABA

This changes the number of balls as follows: 0A1A2B4A50 \xrightarrow{A} 1\xrightarrow{A} 2 \xrightarrow{B}4\xrightarrow{A} 5.
There are also other acceptable outputs, such as AAAAA.


Sample Input 2Copy

Copy
14

Sample Output 2Copy

Copy
BBABBAAAB

This changes the number of balls as follows: 0B0B0A1B2B4A5A6A7B140 \xrightarrow{B} 0 \xrightarrow{B} 0 \xrightarrow{A}1 \xrightarrow{B} 2 \xrightarrow{B} 4 \xrightarrow{A}5 \xrightarrow{A}6 \xrightarrow{A} 7 \xrightarrow{B}14.
It is not required to minimize the length of SS.



2025-04-04 (Fri)
23:29:57 +00:00