Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156789 刘杨国卿 整数去重 C++ Compile Error 0 MS 0 KB 206 2026-07-11 09:37:35

Tests(0/0):


Code:

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


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:1: error: expected primary-expression at end of input
 return
 ^
Main.cc:13:1: error: expected ';' at end of input
Main.cc:13:1: error: expected '}' at end of input