博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Educational Codeforces Round 13 A. Johny Likes Numbers 水题
阅读量:5147 次
发布时间:2019-06-13

本文共 593 字,大约阅读时间需要 1 分钟。

A. Johny Likes Numbers

题目连接:

Description

Johny likes numbers n and k very much. Now Johny wants to find the smallest integer x greater than n, so it is divisible by the number k.

Input

The only line contains two integers n and k (1 ≤ n, k ≤ 109).

Output

Print the smallest integer x > n, so it is divisible by the number k.

Sample Input

5 3

Sample Output

6

Hint

题意

找到一个大于n的最小值p,使得p%k==0

题解:

O1公式题

答案是(n/k+1)k

显然。

代码

#include
using namespace std;const int inf = 1e9;int main(){ long long n,k; cin>>n>>k; cout<<(n/k+1)*k<

转载于:https://www.cnblogs.com/qscqesze/p/5582663.html

你可能感兴趣的文章
STL中的查找算法
查看>>
js--语音播报
查看>>
Implement Trie (Prefix Tree) 两种实现方法的比较
查看>>
Python 内置函数
查看>>
System.Threading.Tasks并发和异步代码使用
查看>>
mariadb 重置密码
查看>>
破产姐妹第一季/全集2 Broke Girls迅雷下载
查看>>
PHP Switch 语句判断成绩
查看>>
Picture
查看>>
[洛谷P1600] 天天爱跑步
查看>>
nginx配置注意事项
查看>>
configmap使用-查看configmap个数
查看>>
关于实时监测网络每秒上下行流量问题
查看>>
Django框架nvm和node.js环境配置
查看>>
地下城游戏
查看>>
python简述以及安装
查看>>
fail fast
查看>>
什么是https
查看>>
IOS性能调优系列:使用Zombies动态分析内存中的僵尸对象
查看>>
Jenkins 部署 PHP 应用
查看>>