最大公约数_最小公倍数
文章平均质量分 68
h1021456873
这个作者很懒,什么都没留下…
展开
-
HDU 1019 Least Common Multiple (最小公倍数_水题)
Problem DescriptionThe least common multiple (LCM) of a set of positive integers is the smallest positive integer which is divisible by all the numbers in the set. For example, the LCM of 5, 7 and原创 2015-08-14 17:11:25 · 528 阅读 · 0 评论 -
Codeforces Round #318 [RussianCodeCup Thanks-Round] (Div. 2)C. Bear and Poker(gcd模拟)
Limak is an old brown bear. He often plays poker with his friends. Today they went to a casino. There are n players (including Limak himself) and right now all of them have bids on the table. i-th o原创 2015-08-31 11:51:13 · 859 阅读 · 0 评论 -
51nod 1179 最大的最大公约数 (好题!!!!)
给出N个正整数,找出N个数两两之间最大公约数的最大值。例如:N = 4,4个数为:9 15 25 16,两两之间最大公约数的最大值是15同25的最大公约数5。Input第1行:一个数N,表示输入正整数的数量。(2 <= N <= 50000)第2 - N + 1行:每行1个数,对应输入的正整数.(1 Output输出两两之间最大公约数的最大值。原创 2015-10-14 22:38:40 · 1403 阅读 · 0 评论 -
AOJ 0005 GCD and LCM (最大公约数_裸题)
Write a program which computes the greatest common divisor (GCD) and the least common multiple (LCM) of given a and b (0 a, b ≤ 2,000,000,000). You can supporse that LCM(a, b) ≤ 2,000,000,000.Inpu原创 2015-09-21 20:47:03 · 913 阅读 · 1 评论 -
51nod 1247 可能的路径 (最大公约数变形)
在一个无限大的二维网格上,你站在(a,b)点上,下一步你可以移动到(a + b, b), (a, a + b), (a - b, b), 或者 (a, a - b)这4个点。给出起点坐标(a,b),以及终点坐标(x,y),问你能否从起点移动到终点。如果可以,输出"Yes",否则输出"No"。例如:(1,1) 到 (2,3),(1,1) -> (2,1) -> (2,3)。原创 2015-11-18 21:20:51 · 745 阅读 · 0 评论 -
北航校赛 更大公约数(预处理+暴力,好题)
Description有一个n×m的矩阵,元素是正整数。现在需要删除其某一行的所有元素和某一列的所有元素,使得剩下元素的最大公约数最大。(单个元素的最大公约数是自己)Input输入包含多组测试数据,以EOF结束。每组数据第一行两个数n,m,表示矩阵的行数和列数。(2≤n,m≤1061)下面n行,每行m个正整数,表示矩阵的元素。Output原创 2015-12-21 23:58:41 · 546 阅读 · 0 评论