血压上来了谢谢
查看原帖
血压上来了谢谢
317198
MilkyCoffee楼主2021/10/18 22:35
#include<bits/stdc++.h>
using namespace std;

int n, k, m;

int main() {
    cin >> n >> m >> k;
    int ans = n / m;
    if (n % m != 0) ans++;
    cout << ans << endl;
    
    return 0;
}

70pts.

2021/10/18 22:35
加载中...