본문 바로가기
Java/알고리즘

[Java] 백준 1011번 : Fly me to the Alpha Centauri

by EricJeong 2019. 8. 21.

 

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		long case_count = in.nextInt();
		for (long i = 0; i < case_count; i++) {
			long x_pos = in.nextInt();
			long y_pos = in.nextInt();
			long length = y_pos - x_pos;
			long answer = 1;
			long dis = 0;

			while (length > dis) {
				answer++;
				dis += answer / 2;
			}
			System.out.println(answer-1);
		}

	}
}

댓글