0x00 Link
-
Source-AtCoder -
Tag-芝士水题 -
Time- ∗ * ∗
0x01 Source Code
//
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
#define IOS ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
void solve() {
int a, b;
cin >> a >> b;
cout << (a + b - 1) / b << endl;
}
signed main() {
IOS
int t = 1;
// cin >> t;
while (t--) solve();
return 0;
}
0x10 Diagram
-
404
0x11 Reference
-
404
作者 | 乐意奥AI
AtCoder竞赛编程题目:C++实现求两数之和的整数商

被折叠的 条评论
为什么被折叠?



