#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); int N,K; cin >> N >> K; K--; vector A(N); rep(i,N) cin >> A[i]; ll L = 0, R = 0; for(int i = 0; i <= K; i++) L += A[i]; for(int i = K; i < N; i++) R += A[i]; if(A[K] == 0) { cout << 0 << endl; } else if(A[K] == 1) { cout << max(L, R) << endl; } else { cout << L + R - A[K] << endl; } }