📝 문제
백준 - 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);
}
}
📌 결과