

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
整数 が与えられるので、以下の条件を全て満たす最小の整数 を求めてください。
- は 以上である。
- 非負整数 の組であって、 を満たすようなものが存在する。
制約
- は整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを整数として出力せよ。
入力例 1Copy
9
出力例 1Copy
15
であるようなどの整数 についても、問題文中の条件を満たすような は存在しません。
は とすると問題文中の条件を満たします。
入力例 2Copy
0
出力例 2Copy
0
自身が条件を満たすこともあります。
入力例 3Copy
999999999989449206
出力例 3Copy
1000000000000000000
入出力が bit 整数型に収まらない場合があります。
Score : points
Problem Statement
Given an integer , find the smallest integer that satisfies all of the conditions below.
- is greater than or equal to .
- There is a pair of non-negative integers such that .
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1Copy
9
Sample Output 1Copy
15
For any integer such that , there is no that satisfies the condition in the statement.
For , satisfies the condition.
Sample Input 2Copy
0
Sample Output 2Copy
0
itself may satisfy the condition.
Sample Input 3Copy
999999999989449206
Sample Output 3Copy
1000000000000000000
Input and output may not fit into a -bit integer type.