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

建议使用的浏览器:

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

7106:Function

题目描述
Let's define the sum of all digits in $x$ as $g(x)$. For example, $g(123) = 1 + 2 + 3 = 6$. Give you a function:
$$
f(x) = Ax^2g(x) + Bx^2 + Cxg^2(x) + Dxg(x)
$$
Find the minimum value of $f(x)$, where $x$ is an integer and $1 \leq x \leq N$.
输入解释
This problem contains multiple test cases.

The first line of the input contains an integer $T (1 \leq T \leq 10^4)$, representing the number of test cases.

Each of the next $T$ lines contains five integers $A, B, C, D, N (0 \leq |A| \leq 10^3, 0 \leq |B|, |C|, |D| \leq 10^6, 1 \leq N \leq 10^6)$ indicating a test case.
输出解释
For each test case output an integer, denoting the answer.
输入样例
2
1 2 3 4 100
4 3 2 1 100
输出样例
10
10

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-7106

最后修改于 2021-10-23T19:11:29+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
3000/1500MS(Java/Others) 262144/262144K(Java/Others)