본문 바로가기

Algorithm

C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 2010번:플러그 답

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
using namespace std;
int main() {
    int N, mul, total = 0;
    cin >> N;
    for (int i = 0; i < N; i++)
    {
        cin >> mul;
        if (i == N - 1)
        {
            total += mul;
            break;
        }
        total += mul - 1;
 
    }
    cout << total << '\n';
}
cs