当前位置: 代码迷 >> 综合 >> UVA 10976(暴力)
  详细解决方案

UVA 10976(暴力)

热度:42   发布时间:2023-11-25 14:05:38.0

UVA 10976(暴力)

UVA 10976
题意:输入正整数k,找到所有的正整数x>=y,使得1/k=1/x+1/y。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
struct node{ll a, b, c;
};
ll n, cnt;
int main(){#ifdef ONLINE_JUDGE#elsefreopen("in.txt", "r", stdin);#endif // ONLINE_JUDGEwhile(~scanf("%lld", &n)){cnt = 0;vector<node> Q;for(ll i = n + 1; i <= 2 * n; i++){ll t = n * i;if(t % (i - n) == 0){Q.push_back((node){n, t / (i - n), i});cnt++;}}printf("%d\n", cnt);for(int i = 0; i < Q.size(); i++){printf("1/%d = 1/%d + 1/%d\n", Q[i].a, Q[i].b, Q[i].c);}}return 0;
}

posted on 2019-01-04 16:34 坤sir 阅读(...) 评论(...) 编辑 收藏