[BOJ/C++] 2869 달팽이는 올라가고 싶다

mani·2023년 5월 30일
0

baekjoon_step

목록 보기
72/73

달팽이의 움직임을 계산하는 문제

cmath 헤더
ceil() 함수 - 올림
floor() 함수 - 내림
round() 함수 - 반올림

반올림으로는 안되는건감?!?


#include <iostream>
#include <cmath>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int A, B, V;
	cin >> A >> B >> V;
	int a = V - A;
	int b = A - B;
	if (A >= V)
		cout << "1";
	else if ((V - A) % (A - B) == 0)
		cout << (a / b) + 1;
	else
		cout << (a / b) + 2;
	return 0;
}
profile
log

0개의 댓글