D - 2-variable Function Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 400400

問題文

整数 NN が与えられるので、以下の条件を全て満たす最小の整数 XX を求めてください。

  • XXNN 以上である。
  • 非負整数 (a,b)(a,b) の組であって、 X=a3+a2b+ab2+b3X=a^3+a^2b+ab^2+b^3 を満たすようなものが存在する。

制約

  • NN は整数
  • 0N10180 \le N \le 10^{18}

入力

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

NN

出力

答えを整数として出力せよ。


入力例 1Copy

Copy
9

出力例 1Copy

Copy
15

9X149 \le X \le 14 であるようなどの整数 XX についても、問題文中の条件を満たすような (a,b)(a,b) は存在しません。
X=15X=15(a,b)=(2,1)(a,b)=(2,1) とすると問題文中の条件を満たします。


入力例 2Copy

Copy
0

出力例 2Copy

Copy
0

NN 自身が条件を満たすこともあります。


入力例 3Copy

Copy
999999999989449206

出力例 3Copy

Copy
1000000000000000000

入出力が 3232bit 整数型に収まらない場合があります。

Score : 400400 points

Problem Statement

Given an integer NN, find the smallest integer XX that satisfies all of the conditions below.

  • XX is greater than or equal to NN.
  • There is a pair of non-negative integers (a,b)(a, b) such that X=a3+a2b+ab2+b3X=a^3+a^2b+ab^2+b^3.

Constraints

  • NN is an integer.
  • 0N10180 \le N \le 10^{18}

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer as an integer.


Sample Input 1Copy

Copy
9

Sample Output 1Copy

Copy
15

For any integer XX such that 9X149 \le X \le 14, there is no (a,b)(a, b) that satisfies the condition in the statement.
For X=15X=15, (a,b)=(2,1)(a,b)=(2,1) satisfies the condition.


Sample Input 2Copy

Copy
0

Sample Output 2Copy

Copy
0

NN itself may satisfy the condition.


Sample Input 3Copy

Copy
999999999989449206

Sample Output 3Copy

Copy
1000000000000000000

Input and output may not fit into a 3232-bit integer type.



2025-04-03 (Thu)
09:46:53 +00:00