0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:25:24 +00:00
OI-codes/Luogu/problem/P4445/P4445.cpp
2021-01-02 15:30:52 +08:00

18 lines
295 B
C++

#include<bits/stdc++.h>
using namespace std;
int main() {
int n, a[100005];
long long ans=0;
cin >> n;
for(int i = 0 ; i < n ; i++) {
cin >> a[i];
}
for(int i = 1 ; i < n ; i++) {
ans += max(a[i], a[i-1]);
}
cout << ans << endl;
return 0;
}