-
백준 8974 - 희주의 수학시험백준 algorithm 2019. 9. 11. 18:37반응형
for문을 이용해 배열을 생성하면 간단하게 할 수 있다.
문제를 잘못이해해 두번이나 틀렸다.......ㅠ#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<int> arr; for (int i = 1; i <= 1000; i++) { for (int j = 0; j < i; j++) { arr.push_back(i); } } int start,end = 0; int val = 0; cin >> start>>end; for (int s = start; s <= end; s++) { val += arr[s-1]; } cout << val; return 0; }
반응형'백준 algorithm' 카테고리의 다른 글
백준 5086 - 배수와 약수 (0) 2019.09.17 백준 - 1932 정수 삼각형 (0) 2019.09.17 백준 2750 - 수 정렬하기 , 백준 2751 - 수 정렬하기 2 (0) 2019.09.10 백준 2231 - 분해합 (0) 2019.09.10 백준 2292 - 벌집 (0) 2019.09.08