参考代码:
#include<iostream>
#include<algorithm>
#include<cstring>
#include<sstream>
using namespace std;
const int N=10010;
int n;
int a[N];
int main()
{
int cnt;
cin>>cnt;
string line;
getline(cin,line);
while(cnt--)
{
getline(cin,line);
stringstream ssin;
ssin<<line;
while(ssin>>a[n]) n++;
}
sort(a,a+n);
int res1=0,res2=0;
for(int i=1;i<=n;i++)
{
if(a[i]==a[i-1]) res1=a[i];
if(a[i]>=a[i-1]+2) res2=a[i]-1;
}
cout<<res2<<" "<<res1<<endl;
return 0;
}
0.0分
0 人评分
剔除相关数 (C语言代码)浏览:1058 |
九宫重排 (C++代码)浏览:1410 |
c primer plus 第十二章 12.1小节浏览:400 |
A+B for Input-Output Practice (II) (C语言代码)浏览:1043 |
【偶数求和】 (C语言代码)浏览:588 |
WU-小九九 (C++代码)浏览:1713 |
C语言程序设计教程(第三版)课后习题6.3 (C++代码)浏览:1067 |
IP判断 (C语言描述,蓝桥杯)浏览:1118 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:676 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1496 |