문제 링크
15596번: 정수 N개의 합 (acmicpc.net)
#include<stdio.h>
#include <vector>
using namespace std;
long long sum(std::vector<int>& a)
{
long long ans = 0;
for (int i = 0; i < a.size(); i++)
{
ans += a[i];
}
return ans;
}
'백준(BOJ)' 카테고리의 다른 글
백준 11659(구간 합 구하기 4) (0) | 2023.01.22 |
---|---|
백준 26168(배열 전체 탐색하기) (0) | 2023.01.22 |
백준 4673(셀프 넘버) (2) | 2022.05.18 |
백준 15552(빠른 A+B) (0) | 2022.05.18 |
백준 3009(네 번째 점) (0) | 2022.01.25 |
백준 11719(그대로 출력하기2) (0) | 2022.01.25 |