当前位置: 代码迷 >> 综合 >> PAT 甲级 1144 PAT Ranking 个人错误总结
  详细解决方案

PAT 甲级 1144 PAT Ranking 个人错误总结

热度:84   发布时间:2024-02-09 21:22:15.0

这个题我一开始有点怕超时,结果试了一次就过了。。

#include<bits/stdc++.h>
using namespace std;
map<int,bool> mp;
int main(){int n,temp;scanf("%d",&n);for(int i=0;i<n;i++){scanf("%d",&temp);if(temp>0)mp[temp]=true; }int i=0;while(mp[++i]==true);printf("%d",i);return 0;
}
  相关解决方案