博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GCD
阅读量:5297 次
发布时间:2019-06-14

本文共 807 字,大约阅读时间需要 2 分钟。

问题 : GCD

时间限制: 1 Sec  
内存限制: 1280 MB

题目描述

输入

 The first line is an positive integer  T . (1<=T<= 10^3) indicates the number of test cases. In the next T lines, there are three positive integer n, m, p (1<= n,m,p<=10^9) at each line.

输出

样例输入

1 1 2 3

样例输出

1

提示

gcd(1 + Sn, 1 + Sm) = gcd(fib(n + 2), fib(m + 2)) = fib(gcd(n + 2, m + 2)).

#include 
int gcd(int a, int b){ return b ? gcd(b, a % b) : a;}int main(){ int t, n, m, p, s, a, b, c; scanf("%d", &t); while (t--) { scanf("%d%d%d", &n, &m, &p); s = gcd(n + 2, m + 2); a = 1;b = 1;c = 1; for (int i = 3; i <= s; i++) { c = (a + b) % p; a = b; b = c; } printf("%d\n", c); } return 0;}

转载于:https://www.cnblogs.com/lzyws739307453/p/8906273.html

你可能感兴趣的文章
20130330java基础学习笔记-语句_for循环嵌套练习2
查看>>
Spring面试题
查看>>
窥视SP2010--第一章节--SP2010开发者路线图
查看>>
MVC,MVP 和 MVVM 的图示,区别
查看>>
C语言栈的实现
查看>>
代码为什么需要重构
查看>>
TC SRM 593 DIV1 250
查看>>
SRM 628 DIV2
查看>>
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
Python-S9-Day127-Scrapy爬虫框架2
查看>>
使用Chrome(PC)调试移动设备上的网页
查看>>
使用gitbash来链接mysql
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
右侧导航栏(动态添加数据到list)
查看>>
81、iOS本地推送与远程推送详解
查看>>
虚拟DOM
查看>>
uva 11468 Substring
查看>>
自建数据源(RSO2)、及数据源增强
查看>>
BootStrap2学习日记2--将固定布局换成响应式布局
查看>>
关于View控件中的Context选择
查看>>