nyoj 399-整除个数 (整除)
Posted GetcharZp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nyoj 399-整除个数 (整除)相关的知识,希望对你有一定的参考价值。
399-整除个数
内存限制:64MB
时间限制:3000ms
特判: No
通过数:9
提交数:18
难度:1
题目描述:
1、2、3… …n这n(0<n<=1000000000)个数中有多少个数可以被正整数b整除。
输入描述:
输入包含多组数据 每组数据占一行,每行给出两个正整数n、b。
输出描述:
输出每组数据相应的结果。
样例输入:
2 1 5 3 10 4
样例输出:
2 1 2
C/C++ AC:
1 #include <iostream> 2 #include <algorithm> 3 #include <cstring> 4 #include <cstdio> 5 #include <cmath> 6 #include <stack> 7 #include <set> 8 #include <map> 9 #include <queue> 10 #include <climits> 11 #define PI 3.1415926 12 13 using namespace std; 14 const int MY_MAX = 35; 15 long long N, M; 16 17 int main() 18 { 19 while (cin >>N >>M) 20 { 21 cout <<N / M <<endl; 22 } 23 }
以上是关于nyoj 399-整除个数 (整除)的主要内容,如果未能解决你的问题,请参考以下文章