其他分享
首页 > 其他分享> > 1144 The Missing Number (20 分)

1144 The Missing Number (20 分)

作者:互联网

水~。

set<int> S;
int n;

int main()
{
    cin>>n;

    for(int i=0;i<n;i++)
    {
        int x;
        cin>>x;
        if(x > 0) S.insert(x);
    }

    int res=1;
    while(S.count(res)) res++;
    cout<<res<<endl;
    //system("pause");
    return 0;
}

标签:count,insert,set,20,1144,int,res,Number
来源: https://www.cnblogs.com/fxh0707/p/14482756.html