我们规定,对于一个整数 a,如果其各位数字相加之和能够被 4 整除,则称它是一个特殊数字。
现在,给定一个整数 n,请你计算并输出不小于 n 的最小特殊数字。
输入格式
一个整数 n。
输出格式
一个整数,表示不小于 n 的最小特殊数字。
直接暴力枚举
时间复杂度:log(n)
c++代码:
#include <cstdio>
int n;
bool check(int x)
{
int res = 0;
while (x) res += x % 10, x /= 10;
return res % 4 == 0;
}
int main()
{
scanf("%d", &n);
while (!check(n)) ++n;
printf("%d\n", n);
return 0;
}
欢迎评论点赞