原题描述: 输入k,输出满足x>=y并且1/k=1/x+1/y的所有数据; 首先是确定枚举的边界x>=y 可得1/k<=2/y ∴y<=2k 又有x>=y 可以让y从k+1开始枚举,看x的是否为整数,如果是则输出结果
原创 2018-10-27 09:08:21
363阅读
题目大意:输入k,求出所有x,y满足 1/k = 1/x + 1/y。解题思路:根据样例可得y小于x,y的范围为k+1~2*k。循环求出x。ac代码:#include using namespace std;int k, sum;int main(){ while (scanf("%d", &k)!=EOF){ sum = 0; for (int i=k+1;
原创 2021-12-01 15:54:36
31阅读
#include#include#includeusing namespace std;int main(){ int k; while(cin >> k && k){ vectora[2]; for(int i=k+1; i<=2*k; i++) if( k*i%(i-k)==0 ){ a[0].p
原创 2022-08-05 15:37:01
24阅读
题目传送门 1 /* 2 x>=y, 1/x 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 11 #include 12 #include 13 using namespace std;14 1...
转载 2015-04-28 16:00:00
68阅读
2评论
It is easy to see that for every fraction in the form 1k(k > 0), we can always find two positivee a p
原创 2022-08-30 15:33:05
74阅读
It is easy to see that for every fraction in the form 1 k (k > 0), we can always find two positive integers x and y, x ≥ y, such that: 1/k=1/x+1/y Now our question is: can you write a program that
原创 2021-07-06 14:47:10
167阅读
题目描述输入212输出21/2 = 1/6 + 1/31/2 = 1/4 + 1/481/12 = 1/156 + 1/131/12 = 1/84 + 1/141/12 = 1/60 + 1/151/12 = 1/48 + 1/161/12 = 1/
原创 2022-07-07 14:51:07
65阅读
【题意】给你一个数k,求所有使得1/k = 1/x + 1/y成立的x≥y的整数对。【解题方法】数论,枚举。枚举所有在区间(k+1,2k)上的y即可,当1/k - 1/y的结果分子为1即为一组解。【AC代码】////Created by just_sort 2016/1/3//Copyright (c) 2016 just_sort.All Rights Reserved//
原创 2022-04-19 17:23:16
34阅读
【链接】 "我是链接,点我呀:)" 【题意】 在这里输入题意 【题解】 x =y = $\frac{1}{x} $\frac{1}{x}=\frac{1}{k} \frac{1}{y}$ 结合两个式子可以得到 y 【代码】 cpp / 1.Shoud it use long long ? 2.Hav
转载 2017-12-02 06:33:00
44阅读
2评论
这个题目在看了分析变为浮点数,直接让分子分母两个整数,进行取余运算看
原创 2023-05-15 00:37:10
38阅读
【题意】:给你一个数k,求所有使得1/k = 1/x + 1/y成立的x≥y的整数对。 【分析】:枚举所有在区间【k+1, 2k】上的 y 即可,当 1/k - 1/y 的结果分子为1即为一组解。 【代码】:
转载 2017-12-18 17:01:00
45阅读
2评论
The new bind version 9.3.6 (Redhat 5.4) try to use IPv6 transport even if the server host does not have IPv6 connectivity, resulting in slower name resolution.Sep 2 19:43:16 cpanel named[22767]: netwo
转载 精选 2013-12-09 14:18:43
1340阅读
今天学Redis过程中遇到问题,拒绝连接:通过查找,一般这种情况出现问题有两种:第一种情况:一般本机拒绝访问就是出现了有其他IP地址在访问,删除其他访问进程(我失败的而原因是IDEA连接之后没关闭导致其他IP访问不了)首先查看有没有其他IP访问Redisps -ef | grep redis果不其然,有其他IP访问把这个进程杀死就好了   kill 10976之后在访问就成功了
转载 2023-07-21 21:24:50
721阅读
1. 前言搜索又称为暴力求解法,意为尽量把所有可能的情况都列举出来,然后一一试验,常用于数据范围较小且没有明显的其它解法时。2. 枚举法直接枚举所有可能的情况,然后一一试验。注意枚举时,要选择合适的枚举对象且确定好枚举范围。2.1 简单枚举选择合适的枚举对象,确定好枚举范围。7-3 uva10976 100组数据,输入正整数k(1e4),找到所有的正整数x>=y,使得1/k=1/x+1/y。