Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156555 刘轻松 19买画笔 C++ Accepted 2 MS 276 KB 182 2026-07-03 13:34:29

Tests(5/5):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,ret=0,a; cin>>n; for(int i=1;i<=n;i++){ cin>>a; ret = ret^a; } cout<<ret; return 0; }