Files
python/TangDou/XiTi/1364.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

17 lines
353 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
vector<int> v1;
while (true) {
int c;
cin >> c;
if (c == 0)break;
v1.push_back(c);
}
if (v1.size() % 2 == 1) cout << v1[v1.size() / 2] << endl;
else cout << v1[v1.size() / 2 - 1] + v1[v1.size() / 2] << endl;
return 0;
}