1 条题解

  • 0
    @ 2023-1-21 21:06:48
    #include<bits/stdc++.h>
    using namespace std;
    /*
    数组计数法统计哪些数出现过,再循环找出没有出现过的数 
    */
    int a[100010],x;
    int main()
    {
    	int n;
    	cin >> n;
    	for(int i = 1; i <= n-2; i++){
    		cin >> x;
    		a[x] = 1;//标记出现过的数 
    	}
    	for(int i =1; i <= n; i++){
    		if(a[i] == 0){
    			cout << i << " ";
    		}
    	} 
    	return 0;
    }
    
    
    
    • 1

    信息

    ID
    1025
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    递交数
    58
    已通过
    25
    上传者