Recent Posts
Notice
No Rules Rules
쉽게 푸는 문제 (feat. 백준, 1292번) 본문
728x90
반응형
쉽게 푸는 문제
https://www.acmicpc.net/problem/1292
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int A, B, arr[1000], cnt = 1, idx = 0, ans = 0;
while(idx != 1000){
for(register int i = 0; i < cnt; ++i){
if (idx == 1000)
break;
arr[idx++] = cnt;
}
++cnt;
}
cin >> A >> B;
for(register int i = A - 1; i < B; ++i)
ans += arr[i];
cout << ans;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
트럭 주차 (feat. 백준, 2979번) (0) | 2022.11.03 |
---|---|
수들의 합 2 (feat. 백준, 2003번) (0) | 2022.11.02 |
단어 뒤집기 2 (feat. 백준, 17413번) (0) | 2022.11.02 |
차이를 최대로 (feat. 백준, 10819번) (0) | 2022.11.01 |
열 개씩 끊어 출력하기 (feat. 백준, 11721번) (0) | 2022.11.01 |
Comments