티스토리 뷰
https://www.acmicpc.net/problem/11399
#include <iostream>
#include <algorithm>
using namespace std;
int main(void){
int n;
cin >> n;
int arr[n];
int reducer[n];
int answer=0;
for(int i = 0; i<n; i++){
cin>>arr[i];
}
sort(arr,arr+n);
reducer[0]=arr[0];
answer += reducer[0];
for(int i = 1; i<n; i++){
reducer[i]=arr[i]+reducer[i-1];
answer+=reducer[i];
}
cout<<answer;
}
확실히 자바스크립트로 할 때보다 스트레스 받는다.
뭐를 해야할지는 알겠는데 어떻게 해야할지는 몰라서 계속 구글링하면서 하는 중이다.
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1931번 : 회의실 배정 (0) | 2021.09.11 |
---|---|
Node.js)백준 11047번 : 동전 9 (0) | 2021.09.11 |
Node.js) 백준 2565번 : 전깃줄 ★ (0) | 2021.09.10 |
Node.js) 백준 11053번 : 가장 긴 증가하는 부분 수열 ★ (0) | 2021.09.10 |
C ) 백준 1330번 : 두 수 비교하기 (0) | 2021.09.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 서버점검
- 로드나인
- node.js
- 투포인터
- DB 생성
- 은둔청년체험
- create databases;
- 개발자면접
- 롱베케이션
- create db
- 동적프로그래밍
- 면접질문
- 다이나밍프로그래밍
- BFS
- 최소공통조상
- 그래프
- 서버개발
- 다이나믹프로그래밍
- 투포인터 연습
- 면접비
- MOD
- MySQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
글 보관함