#C. C - Base -2 Number

    传统题 1000ms 256MiB

C - Base -2 Number

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

C - Base -2 Number

Score : $300$ points

Problem Statement

Given an integer $N$, find the base $-2$ representation of $N$.

Here, $S$ is the base $-2$ representation of $N$ when the following are all satisfied:

  • $S$ is a string consisting of 0 and 1.
  • Unless $S =$ 0, the initial character of $S$ is 1.
  • Let $S = S_k S_{k-1} ... S_0$, then $S_0 \times (-2)^0 + S_1 \times (-2)^1 + ... + S_k \times (-2)^k = N$.

It can be proved that, for any integer $M$, the base $-2$ representation of $M$ is uniquely determined.

Constraints

  • Every value in input is integer.
  • $-10^9 \leq N \leq 10^9$

Input

Input is given from Standard Input in the following format:

NN

Output

Print the base $-2$ representation of $N$.


-9
1011

As $(-2)^0 + (-2)^1 + (-2)^3 = 1 + (-2) + (-8) = -9$, 1011 is the base $-2$ representation of $-9$.


123456789
11000101011001101110100010101

0
0

2024寒假入门组刷题营(七)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-4 13:30
结束于
2024-2-4 15:30
持续时间
2 小时
主持人
参赛人数
10