Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155037 王顺煜 19买画笔 C++ Accepted 1 MS 272 KB 237 2026-05-31 12:18:14

Tests(5/5):


Code:

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