Tony's Log

Algorithms, Distributed System, Machine Learning

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  502 随笔 :: 0 文章 :: 3 评论 :: 11万 阅读
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

An iterative 'simulation' problem:

复制代码
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;


int main() {
    int t, n, c, m;
    cin >> t;
    while (t--)
    {
        cin >> n >> c >> m;
        int answer = 0;
        // Computer answer
        answer = n / c;
        int wrapper = answer;
        while (wrapper >= m)
        {
            wrapper -= m;
            wrapper++;
            answer++;
        }
        cout << answer << endl;
    }
    return 0;
}
复制代码
posted on   Tonix  阅读(146)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示