当前位置: 代码迷 >> 综合 >> 洛谷 P5709 【深基2.习6】Apples Prologue
  详细解决方案

洛谷 P5709 【深基2.习6】Apples Prologue

热度:81   发布时间:2023-12-02 15:25:28.0

做题地址:https://www.luogu.com.cn/problem/P5709


注意t==0

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>using namespace std;int n, t, s;int main(){
    cin >> n >> t >> s;if (t == 0){
    cout << 0 << endl;return 0;}int res = (s / t) + (s % t != 0);if (n - res > 0) cout << n - res << endl;else cout << 0 << endl;return 0;
}