1. 关键是我们题意要转换过来,其实题目描述中就有答案。
  2. 计算过程要等价过来。
#include<bits/stdc++.h>
using namespace std;

int main(){
    int n,x;
    while(cin>>n){
        vector<long long> arr;
        for(int i=0; i< n;i++){
            cin>>x;
            arr.push_back(x);
        }
        long long count = 0;

        for(int i =0;i < n;i++){
            count+= arr[i]/2;
        }

        cout<<count<<endl;
    }

    return 0;
}