首页 > 其他 > 详细

CF743C Vladik and fractions

时间:2019-10-04 21:00:19      阅读:84      评论:0      收藏:0      [点我收藏+]

CF743C Vladik and fractions

构造

公共解是 n n+1 n(n+1)

原因:

1/n+1/n+1+1/n(n+1)=2n+1+1/n(n+1)=2/n

但是注意,n=1的时候无解

其中x,y,zx,y,z为正整数并且互不相同

代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll x;
int main(){
    cin>>x;
    if(x==1){
        printf("-1\n");
        return 0;
    }
    cout<<x<<" "<<x+1ll<<" "<<x*(x+1ll)<<endl;
    return 0;
} 

 

CF743C Vladik and fractions

原文:https://www.cnblogs.com/QYJ060604/p/11623040.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!