比赛 2024暑期C班集训1 评测结果 WWWWWWWWWWWWWWWWWWWW
题目名称 艾姆易艾克斯 最终得分 0
用户昵称 AeeE5x 运行时间 0.087 s
代码语言 C++ 内存使用 1.30 MiB
提交时间 2024-07-01 10:27:29
显示代码纯文本
#include<iostream>
#include<algorithm>
using namespace std;
int n;
int A[100010],B[100010];
int main(){
    freopen("Mex.in","r",stdin);
    freopen("Mex.out","w",stdout);
    
    scanf("%d",&n);
    for(int i=1;i<=n;i++) scanf("%d",&A[i]);
    for(int i=1;i<=n;i++) scanf("%d",&B[i]);
    sort(A+1,A+1+n);
    int ans=0;
    for(int i=1;i<=n;i++){
        if(A[i]==ans) ans++;
        else break;
    }
    cout<<ans;
    
    return 0;
}