반응형
https://www.acmicpc.net/problem/1292
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int frst = sc.nextInt();
int scd = sc.nextInt();
int[] num=new int[scd];
int j=1,res=0;
for(int i=0;i<scd;) {
for(int k=0;k<j;k++) {
if(i>=scd)
break;
num[i++]=j;
}
j++;
}
for(int l=frst-1;l<=scd-1;l++) {
res+=num[l];
}
System.out.println(res);
}
}
728x90
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
백준 2581 java 자바 (0) | 2022.08.04 |
---|---|
백준 1978 Java 자바 (0) | 2022.08.03 |
백준 2693 java 자바 (0) | 2022.08.03 |
백준 2609 Java 자바 (0) | 2022.08.02 |
백준 2309 Java 자바 (0) | 2022.08.02 |
댓글