Recent Posts
Notice
No Rules Rules
Fly me to the Alpha Centauri 본문
728x90
반응형
Fly me to the Alpha Centauri
https://www.acmicpc.net/problem/1011
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <cmath>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int T, X, Y;
cin >> T;
for (register int t = 0; t < T; ++t) {
cin >> X >> Y;
if (X == Y)
cout << 0;
else {
register int t = sqrt(Y - X);
if (t * t == Y - X)
cout << 2 * t - 1;
else {
register int Z = (Y - X) - t * t;
if (Z <= t)
cout << 2 * t;
else
cout << 2 * t + 1;
}
}
cout << "\n";
}
return 0;
}
// *&)*@*
아래 "멍멍이 쓰다듬기" 와 동일한 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
공 (feat. 백준, 2695번) (0) | 2022.09.08 |
---|---|
금고 테스트 (feat. 백준, 2266번) (0) | 2022.09.08 |
불 (feat. 백준, 5427번) (0) | 2022.09.07 |
불! (feat. 백준, 4179번) (0) | 2022.09.07 |
단어 수학 (feat. 백준, 1339번) (0) | 2022.09.07 |
Comments