Codeforces 460A Vasya and Socks(水题)

题目链接:Codeforces 460A Vasya and Socks

题目大意:Aasya有n双新袜子,他妈每m天给他买一双新袜子,问不洗袜子的话能连续多少天有袜子穿。

解题思路:水题,注意取整后的余数。

#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

int main () {
    int n, k;
    scanf("%d%d", &n, &k);

    int ans = n;
    while (n >= k) {
        ans += n / k;
        n = n / k + n % k;
    }
    printf("%d\n", ans);
    return 0;
}

你可能感兴趣的:(codeforces)