結果
問題 | No.109 N! mod M |
ユーザー | shinchan |
提出日時 | 2021-10-26 18:48:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,797 bytes |
コンパイル時間 | 2,317 ms |
コンパイル使用メモリ | 209,688 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 19:25:40 |
合計ジャッジ時間 | 4,820 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 59 ms
6,816 KB |
testcase_02 | AC | 24 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 38 ms
6,820 KB |
testcase_05 | AC | 1,219 ms
6,816 KB |
testcase_06 | AC | 13 ms
6,820 KB |
testcase_07 | AC | 108 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> #define be(v) (v).begin(),(v).end() #define pb(q) push_back(q) #define rep(i, n) for(int i=0;i<n;i++) #define all(i, v) for(auto& i : v) typedef long long ll; using namespace std; const ll mod=1000000007, INF=(1LL<<60); #define doublecout(a) cout<<fixed<<setprecision(10)<<a<<endl; map<ll, ll> prime(ll n) { ll m = n; map<ll, ll> mp; for(ll i=2;i*i<=n;i++) { while(m % i == 0) { m /= i; mp[i]++; } } if(m > 1) mp[m]++; return mp; } long long modinv(long long a, long long m) { long long b = m, u = 1, v = 0; while (b) { long long t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= m; if (u < 0) u += m; return u; } void solve() { ll n, m; cin >> n >> m; if(n >= m || m == 1) { cout << 0 << endl; return; } if(n == 0) { cout << 1 << endl; return; } int cnt = 0; map<ll, ll> mp = prime(m); { bool ok = true; for(auto [x, y] : mp) { cnt ++; ll e = n; rep(i, y) { if(e < x) ok = false; e /= x; } } if(ok) { cout << 0 << endl; return; } } ll ans = 1; if(cnt == 1) { ans = -1; for(ll i=n+1;i<m;i++) { ans *= modinv(i, m); ans %= m; } ans += m; ans %= m; cout << ans << endl; return; } for(ll i=2;i<=n;i++) { ans *= i; ans %= m; } cout << ans << endl; } int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); ll t; cin >> t; while(t--) solve(); return 0; }