1 条题解
-
2240714zj张逸凡 (张逸fan) LV 8 @ 2024-07-19 09:53:54
#include<iostream>
using namespace std;
int a[1005],w[1005];
int main()
{
int n,t,j=0,s=0,v=0;
cin>>t>>n;
for(int i=0;i<n;i++)
{
cin>>a[i];
}
for(;j<t;j++)
{
w[j]=s;
s++;
}
for(int c=0;c<n;c++)
{
for(int x=0;x<t;x++)
{
if(w[x]==a[c])
w[x]=-1;
}
}
for(int f=0;f<t;f++)
{
if(w[f]==-1)
;
else
{
cout<<w[f]<<' ';
v++;
}
}
if(v==0)
cout<<n;
}
- 1
信息
- ID
- 2595
- 难度
- 6
- 分类
- (无)
- 标签
- 递交数
- 154
- 已通过
- 38
- 通过率
- 25%
- 上传者