https://www.acmicpc.net/problem/1011
t = int(input())
for i in range(t):
x, y = map(int, input().split())
d = y - x
n = 0
while True:
if n * (n + 1) >= d:
break
n += 1
if n**2 < d:
print(n * 2)
else:
print(n * 2 - 1)
'알고리즘 > 백준' 카테고리의 다른 글
백준 2581: 소수 (Python) (0) | 2021.08.31 |
---|---|
백준 1978: 소수 찾기 (Python) (0) | 2021.08.31 |
백준 2839: 설탕 배달 (Python) (0) | 2021.08.30 |
백준 2884: 부녀회장이 될테야 (Python) (0) | 2021.08.30 |
백준 10250: ACM 호텔 (Python) (0) | 2021.08.27 |