結果
問題 | No.109 N! mod M |
ユーザー | sugim48 |
提出日時 | 2014-12-21 23:39:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,271 ms / 5,000 ms |
コード長 | 1,547 bytes |
コンパイル時間 | 698 ms |
コンパイル使用メモリ | 82,140 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 04:47:16 |
合計ジャッジ時間 | 2,548 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 72 ms
6,944 KB |
testcase_02 | AC | 90 ms
6,944 KB |
testcase_03 | AC | 7 ms
6,940 KB |
testcase_04 | AC | 23 ms
6,944 KB |
testcase_05 | AC | 1,271 ms
6,940 KB |
testcase_06 | AC | 7 ms
6,944 KB |
testcase_07 | AC | 11 ms
6,944 KB |
testcase_08 | AC | 8 ms
6,940 KB |
ソースコード
#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; } } } }