結果

問題 No.109 N! mod M
ユーザー sugim48sugim48
提出日時 2014-12-21 23:39:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,446 ms / 5,000 ms
コード長 1,547 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 76,096 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-04 05:20:30
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 77 ms
4,376 KB
testcase_02 AC 98 ms
4,380 KB
testcase_03 AC 8 ms
4,376 KB
testcase_04 AC 26 ms
4,376 KB
testcase_05 AC 1,446 ms
4,376 KB
testcase_06 AC 8 ms
4,380 KB
testcase_07 AC 13 ms
4,376 KB
testcase_08 AC 9 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int u, v, y, m; };

ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-10;

ll gcd(ll a, ll b) {
	if (b == 0) return abs(a);
	else return gcd(b, a % b);
}

ll extgcd(ll a, ll b, ll& x, ll& y) {
	if (b == 0) {
		x = (a >= 0) ? 1 : -1;
		y = 0;
		return abs(a);
	}
	else {
		ll res = extgcd(b, a % b, y, x);
		y -= (a / b) * x;
		return res;
	}
}

ll mod_inverse(ll a, ll m) {
	ll x, y;
	extgcd(a, m, x, y);
	return (m + x % m) % m;
}

int main() {
	int T; cin >> T;
	while (T--) {
		int N, M; cin >> N >> M;
		if (M <= 1000000) {
			if (N >= M) cout << 0 << endl;
			else {
				ll ans = 1 % M;
				for (int i = 1; i <= N; i++)
					ans = (ans * i) % M;
				cout << ans << endl;
			}
		}
		else {
			bool prime = true;
			for (int i = 2; i * i <= M; i++)
				if (M % i == 0)
					prime = false;
			if (!prime || N >= M) cout << 0 << endl;
			else {
				ll ans = M - 1;
				for (int i = N + 1; i < M; i++)
					ans = (ans * mod_inverse(i, M)) % M;
				cout << ans << endl;
			}
		}
	}
}
0