Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
31611 惠子铭 整数去重 C++ 通过 0 MS 324 KB 290 2023-11-19 19:58:39

Tests(1/1):


#include <iostream> using namespace std; int main() { int n, i, x, table[20001]={0}; cin >> n; for (i=0; i<n; i++){ cin >> x; table[x]++; if (table[x] == 1){ cout << x << " "; } } cout << endl; return 0; }


测评信息: