| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 122524 | 何辰熠 | 19买画笔 | C++ | Accepted | 1 MS | 272 KB | 236 | 2025-06-21 10:13:56 |
#include<bits/stdc++.h> using namespace std; int main() { int a[101]={0},n,xb; cin>>n; for(int i=1;i<=n;i++) { cin>>xb; a[xb]++; } for(int j=1;j<=100;j++) { if(a[j]==1) { cout<<j; } } return 0; }