#14612: C++ AC


elvisliu (方塊)

學校 : 臺北市私立延平高級中學
編號 : 69054
來源 : [203.72.178.252]
最後登入時間 :
2018-12-19 17:05:19
b130. NOIP2006 1.明明的随机数 -- NOIP2006普及組 | From: [203.72.178.252] | 發表日期 : 2018-07-26 13:28

#include <bits/stdc++.h>
using namespace std ;
int main() {
int n;
while(cin>>n)
{
int r[n];
int i=0;
for(i=0; i<n; i++)
{
cin>>r[i];
for(int j=0; j<i; j++)
if(r[i]==r[j]) {i--; n--; break;}
}
sort(r,r+i);
cout<<i<<endl;
for(int k=0;k<i;k++) cout<<r[k]<<' ';
cout<<endl;
}
return 0;
}

 
ZeroJudge Forum