hdu 5417 Victor and Machine (물)

1364 단어
제목 링크: hdu 5417 Victor and Machine

코드

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

using namespace std;

int main () {
    int x, y, w, n;
    while (scanf("%d%d%d%d", &x, &y, &w, &n) == 4) {
        int ans = 0, now = 0, shutup = x;
        while (n--) {
            ans = now;
            if (now + w > shutup) {
                now = shutup + y;
                shutup = now + x;
            } else
                now += w;
        }
        printf("%d
"
, ans); } return 0; }

좋은 웹페이지 즐겨찾기