알고리즘/백준

백준 1011: Fly me to the Alpha Centauri (Python)

sssbin 2021. 8. 31. 14:38

https://www.acmicpc.net/problem/1011

 

1011번: Fly me to the Alpha Centauri

우현이는 어린 시절, 지구 외의 다른 행성에서도 인류들이 살아갈 수 있는 미래가 오리라 믿었다. 그리고 그가 지구라는 세상에 발을 내려 놓은 지 23년이 지난 지금, 세계 최연소 ASNA 우주 비행

www.acmicpc.net

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)