[Java] 백준 - 1292번: 쉽게 푸는 문제 (Bronze I)

배똥회장·2022년 8월 11일
0
post-custom-banner

📝 문제

백준 - 1292번: 쉽게 푸는 문제


📝 풀이

📌 작성 코드

import java.io.*;
public class Main {
	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		
		String[] s = br.readLine().split(" ");
		int a = Integer.parseInt(s[0]);
		int b = Integer.parseInt(s[1]);
		
		int result = 0;
		int position = 1;
		int number = 1;
		for (int i = 1; i <= b; i++) {
			if (position < i) {
				number++;
				position += number;
			}
			if (i >= a && i <= b) result += number;
		}
		
		System.out.println(result);
	}
}

📌 결과


profile
어쩌면 개발자
post-custom-banner

0개의 댓글