mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1235.cpp
This commit is contained in:
parent
d6d83f3d8e
commit
af6480d9f5
34
QUSTOJ/1235.cpp
Normal file
34
QUSTOJ/1235.cpp
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
#include <cstdio>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cstring>
|
||||||
|
using namespace std;
|
||||||
|
int data[1005];
|
||||||
|
char cmdline[10240];
|
||||||
|
char buff[32];
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int inc,times,count;
|
||||||
|
while(scanf("%d",×)==1)
|
||||||
|
{
|
||||||
|
memset(data,0,sizeof(int)*1005);
|
||||||
|
memset(cmdline,0,10240);
|
||||||
|
count=0;
|
||||||
|
for(int i=0;i<times;i++)
|
||||||
|
{
|
||||||
|
scanf("%d",&inc);
|
||||||
|
data[inc]++;
|
||||||
|
}
|
||||||
|
for(int i=0;i<1005;i++)
|
||||||
|
{
|
||||||
|
if(data[i])
|
||||||
|
{
|
||||||
|
count++;
|
||||||
|
sprintf(buff,"%d ",i);
|
||||||
|
strcat(cmdline,buff);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cmdline[strlen(cmdline)-1]='\0';
|
||||||
|
printf("%d\n%s\n",count,cmdline);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user