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

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
" , result) ; 
    }
    return 0  ; 
}
原文地址:https://www.cnblogs.com/yi-ye-zhi-qiu/p/7553404.html