标签:map 正整数 ring tac ace -o class ack badge
内存限制:64MB
时间限制:3000ms
特判: No
通过数:9
提交数:18
难度:1
输入包含多组数据 每组数据占一行,每行给出两个正整数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 }
标签:map 正整数 ring tac ace -o class ack badge
原文地址:https://www.cnblogs.com/GetcharZp/p/9345630.html