Atcoder ABC 139B

736 단어
Atcoder ABC 139B
제목:
처음에는 플러그가 하나 있었는데, 플러그는 $a $개였고, 플러그는 $b $개였으며, 최소한 몇 개가 필요하냐고 물었다.
해법:
폭력 시뮬레이션.
CODE:
#include
#include
#include
#include

using namespace std;

#define LL long long
#define N 100010

LL a,b,ans;

int main() {
    scanf("%lld%lld",&a,&b);
    if(b == 1) {
        puts("0");
        return 0;
    }
    LL cnt = 1;
    while(true) {
        cnt = cnt + a - 1;
        ans++;
        if(cnt >= b) break;
    }
    printf("%lld",ans);
    //system("pause");
    return 0;
}

전재 대상:https://www.cnblogs.com/Repulser/p/11449022.html

좋은 웹페이지 즐겨찾기