Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
125700 徐浩天 19买画笔 C++ Accepted 1 MS 268 KB 242 2025-07-15 11:50:29

Tests(5/5):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,a[101]={0},xb; cin>>n; for(int i=1;i<=n;i++){ cin>>xb; a[xb]++; } for(int i=1;i<=100;i++){ if(a[i]%2!=0){ cout<<i; break; } } return 0; }