数论——GCD 与 LCM
Alex_McAvoy
想要成为渔夫的猎手
展开
-
数论 —— 最大公约数与最小公倍数
【概念】1.公约数:有 k 个非零整数,若,s.t.,则称 d 为的公约数。2.最大公约数:公约数中最大的一个数称为最大公约数,记为:注: ① 最大公约数一定是存在的,其最小值为 1。 ② 当 GCD=1 时,则称这些数是互质的。 ③ 公约数一定是最大公约数的约数。3.公倍数:有 k 个非零整数,若,s.t.,则称 d 为的公倍数。4.最小...原创 2018-07-30 16:35:22 · 12283 阅读 · 1 评论 -
Happy 2006(POJ-2773)
Problem DescriptionTwo positive integers are said to be relatively prime to each other if the Great Common Divisor (GCD) is 1. For instance, 1, 3, 5, 7, 9...are all relatively prime to 2006.Now y...原创 2018-08-11 10:07:20 · 465 阅读 · 0 评论 -
LCM Walk(HDU-5584)
Problem DescriptionA frog has just learned some number theory, and can't wait to show his ability to his girlfriend.Now the frog is sitting on a grid map of infinite rows and columns. Rows are n...原创 2019-01-17 16:12:47 · 418 阅读 · 0 评论 -
最大公约数和最小公倍数问题(洛谷-P1029)
题目描述输入2个正整数x0,y0(2≤x0<100000,2≤y0<=1000000),求出满足下列条件的P,Q的个数条件:P,Q是正整数 要求P,Q以x0为最大公约数,以y0为最小公倍数.试求:满足条件的所有可能的2个正整数的个数.输入输出格式输入格式:2 个正整数x0,y0输出格式:1个数,表示求...原创 2018-08-16 18:40:48 · 1509 阅读 · 0 评论 -
取石子游戏(信息学奥赛一本通-T1218)
【题目描述】有两堆石子,两个人轮流去取。每次取的时候,只能从较多的那堆石子里取,并且取的数目必须是较少的那堆石子数目的整数倍,最后谁能够把一堆石子取空谁就算赢。比如初始的时候两堆石子的数目是25和7。25 7 --> 11 7 --> 4 7 --> 4 3 --> 1 3 --> 1 0选手1取选手2取选手1取选手2取...原创 2018-05-11 15:55:51 · 5003 阅读 · 0 评论 -
LCM Challenge(CF-236C)
Problem DescriptionSome days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it.But I also don't want to use ...原创 2019-08-02 09:07:12 · 240 阅读 · 0 评论 -
Faraway(HDU-6639)
Problem Descriptionnsoldiers are dispatched to somewhere in Byteland. These soldiers are going to set off now, but the target location is not so clear.Assume the target location is at(xe,ye), i...原创 2019-10-10 11:17:12 · 263 阅读 · 0 评论