0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:45:26 +00:00
OI-codes/problem/P4445/P4445.cpp
2020-10-19 20:06:06 +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;
}