题目
题意翻译
Jonhy非常喜欢数N和K,现在Johny要找一个可以整除K的最小整数x,且满足x>n。
题目描述
Johny likes numbers n n and k k very much. Now Johny wants to find the smallest integer x x greater than n n , so it is divisible by the number k k .
输入输出格式
输入格式:
The only line contains two integers n n and k k ( 1<=n,k<=10^{9} 1<=n,k<=10
9
).
输出格式:
Print the smallest integer x>n x>n , so it is divisible by the number k k .
输入输出样例
输入样例#1: 复制
5 3
输出样例#1: 复制
6
输入样例#2: 复制
25 13
输出样例#2: 复制
26
输入样例#3: 复制
26 13
输出样例#3: 复制
39
思路
这道题真的是省选难度??
首先,如果n能够被k整除,那么答案就是n+k。
否则,真相只有一个!答案是n+k-n%k
代码
#include<iostream>
#include<cstdio>
using namespace std;
long long n,k;
int main()
{
scanf("%lld%lld",&n,&k);
printf("%lld",n+k-n%k);
}