• nyoj399-整除个数


    整除个数

    时间限制:3000 ms  |  内存限制:65535 KB
    难度:1
    描述
    1、2、3… …n这n(0<n<=1000000000)个数中有多少个数可以被正整数b整除。
    输入
    输入包含多组数据
    每组数据占一行,每行给出两个正整数n、b。
    输出
    输出每组数据相应的结果。
    样例输入
    2 1
    5 3
    10 4
    
    样例输出
    2
    1
    2
    
    #include<stdio.h>
    int main()
    {
    	long long int n,i,b;    //用int实际超出范围了,所以定义了双长整型
    	while(scanf("%lld%lld",&n,&b)!=EOF)
    	{ 
    		printf("%lld
    ",n/b);   //注意,不要用循环,会超时
    	}
    	return 0;
    }

  • 相关阅读:
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
  • 原文地址:https://www.cnblogs.com/aerer/p/9931116.html
Copyright © 2020-2023  润新知