14 条题解
-
0
Note: ****************************************/ #include <queue> #include <math.h> #include <stack> #include <vector> #include <stdio.h> #include <iostream> #include <vector> #include <iomanip> #include <string.h> #include <cstring> #include <algorithm> #define int long long using namespace std; const int N = 1e6 + 10; const int INF = 0x3f3f3f3f; int n,m; signed main(){ cin >> n >> m; cout << n / m << " " << n % m << endl; return 0; }
-
-5
/crl(陈儒乐)/
#include<bits/stdc++.h>//网上查到的万能头// #include <queue> #include <math.h> #include <stack> #include <stdio.h> #include <iostream> #include <vector> #include <iomanip> #include <string.h> #include <algorithm> using namespace std; #define LL long long const int N = 1e5 + 10; const int INF = 0x3f3f3f3f; using namespace std; int main() { int a,b; cin >> a >> b; // int c,d; // c = a / b; // d = a % b; cout << a / b << " " << a % b; return 0; }
- 1
信息
- ID
- 839
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 3
- 标签
- 递交数
- 1010
- 已通过
- 524
- 上传者