首页 > 其他 > 详细

1008 N的阶乘 mod P(51NOD基础题)

时间:2017-09-19 18:51:08      阅读:246      评论:0      收藏:0      [点我收藏+]

1008 N的阶乘 mod P技术分享(51NOD)

基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题
 
输入N和P(P为质数),求N! Mod P = ? (Mod 就是求模 %)
 
例如:n = 10, P = 11,10! = 3628800
3628800 % 11 = 10
Input
两个数N,P,中间用空格隔开。(N < 10000, P < 10^9)
Output
输出N! mod P的结果。
Input示例
10 11
Output示例
10
#include <cstdio>

#define LL long long 
LL n , p ; 
LL result ; 
//  由于是求 阶乘求模  所以别忘了 开 LL 类型的数据  
int main(){
    
    while(~scanf("%lld%lld" , &n , &p)){
        result = 1 ; 
        for(int i=1 ; i<=n ; i++){
            result = result * i % p ; 
        }
        printf("%lld\n" , result) ; 
    }
    return 0  ; 
}

 

1008 N的阶乘 mod P(51NOD基础题)

原文:http://www.cnblogs.com/yi-ye-zhi-qiu/p/7553404.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!