51nod 1008 N的阶乘 mod P

基准时间限制: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 <iostream>
#include<stdio.h>
using namespace std;
typedef long long ll;

int main()
{
    ll n,p,sum=1;
    scanf("%lld%lld",&n,&p);
    for(int i=n;i>=1;i--)
        sum=sum*i%p;
    printf("%lld\n",sum);
    return 0;
}





posted @ 2017-09-18 20:37  Bryce1010  阅读(103)  评论(0编辑  收藏  举报