我是靠谱客的博主 单纯便当,最近开发中收集的这篇文章主要介绍A. Divisibility,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

A. Divisibility

Find the number of k-divisible numbers on the segment [a, b]. In other words you need to find the number of such integer values xthat a ≤ x ≤ b and x is divisible by k.

Input

The only line contains three space-separated integers ka and b (1 ≤ k ≤ 1018; - 1018 ≤ a ≤ b ≤ 1018).

Output

Print the required number.

Sample test(s)
Input
1 1 10
Output
10
Input
2 -4 4
Output
5
AC:
#include<stdio.h>
int main()
{
	long long k,a,b;
	while(scanf("%lld%lld%lld",&k,&a,&b)!=EOF)
	{
		long long s=0;
		if(b<0)
		{
			a=-a;b=-b;
			long long t=a;
			a=b;
			b=t;
		}
		s=b/k-a/k;
		if(a%k==0||a<=0)
		   s++;
		printf("%lldn",s);
	}
	return 0;
 } 


最后

以上就是单纯便当为你收集整理的A. Divisibility的全部内容,希望文章能够帮你解决A. Divisibility所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部