首页 > 代码库 > (2016弱校联盟十一专场10.3) A.Best Matched Pair
(2016弱校联盟十一专场10.3) A.Best Matched Pair
题目链接
#include<cstdio> #include<cstring> #include<algorithm> #include<stack> using namespace std; int n,data[1005]; int cal(int x) { int tx=x; int pre=-1; while(tx) { if(pre!=-1&&tx%10-pre!=-1) return -1; pre = tx%10; tx/=10; } return x; } int main() { scanf("%d",&n); for(int i=0;i<n;i++) scanf("%d",&data[i]); int ans = -1; for(int i=0;i<n;i++) for(int j=i+1;j<n;j++) { ans = max(ans,cal(data[i]*data[j])); } printf("%d\n",ans); }
(2016弱校联盟十一专场10.3) A.Best Matched Pair
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。