当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

1406:Starship Hakodate-maru

题目描述
The surveyor starship Hakodate-maru is famous for her two fuel containers with unbounded capacities. They told the same type of atomic fuel balls.

There, however, is an inconvenience. The shapes of the fuel containers #1 and #2 are always cubic and regular tetrahedral respectively. Both of the fuel containers should be either empty or filled according to their shapes. Otherwise, the fuel balls become extremely unstable and may explode in the fuel containers. Thus, the number of fuel balls for the container #1 should be a cubic number( n^3 for some n=0,1,2,3,...) and that for the container #2 should be a tetrahedral number ( n(n+1)(n+2)/6 for some n=0,1,2,3,...).

Hakodate-maru is now at the star base Goryokaku preparing for the next mission to create a precise and detailed chart of stars and interstellar matters. Both of the fuel containers are now empty. Commander Parus of Goryokaku will soon send a message to Captain Future of Hakodate-maru on how many fuel balls Goryokaku can supply. Captain Future should quickly answer to Commander Parus on how many fuel balls she requests before her ship leaves Goryokaku. Of course, Captain Future and her officers want as many fuel balls as possible.

For example, consider the case Commander Parus offers 151200 fuel balls. If only the fuel container #1 were available ( i.e. if the fuel container #2 were unavailable), at most 148877 fuel balls could be put into the fuel container since 148877=53*53*53< 151200< 54*54*54. If only the fuel container #2 were available, at most 147440 fuel balls could be put into the fuel container since 147440=95*96*97 / 6 < 151200 < 96*97*98 / 6. Using both of the fuel containers #1 and #2, 151200 fuel balls can be put into the fuel containers since 151200 = 39*39*39+81*82*83 / 6. In this case, Captain Future's answer should be "151200"

Commander Parus's offer cannot be greater than 151200 because of the capacity of the fuel storages of Goryokaku. Captain Future and her officers know that well.

You are a fuel engineer assigned to Hakodate-maru. Your duty today is to help Captain Future with calculating the number of fuel balls she should request.
输入解释
The input is a sequence of at most 1024 positive integers. Each line contains a single integer. The sequence is followed by a zero, which indicate the end of data and should not be treated as input. You may assume that none of the input integers is greater than 151200.
输出解释
The output is composed of lines, each containing a single integer. Each output integer should be the greatest integer that is the sum of a nonnegative cubic number and a nonnegative tetrahedral number and that is not greater than the corresponding input number. No other characters should be appear in the output.
输入样例
100
64
50
20
151200
0
输出样例
99
64
47
20
151200

该题目是Virtual Judge题目,来自 北京大学POJ

题目来源 Japan 2001

源链接: POJ-1406

最后修改于 2020-10-29T06:03:18+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 10000