結果
問題 | No.109 N! mod M |
ユーザー | 0w1 |
提出日時 | 2017-01-03 14:33:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,654 bytes |
コンパイル時間 | 1,993 ms |
コンパイル使用メモリ | 166,740 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-16 06:18:33 |
合計ジャッジ時間 | 2,565 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 80 ms
5,248 KB |
testcase_02 | AC | 101 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef pair< int, int > pii; typedef vector< pii > vp; typedef vector< double > vd; typedef vector< vd > vvd; typedef vector< string > vs; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; void init(){ } void preprocess(){ } int is_prime( int x ){ for( int i = 2; i * i <= x; ++i ){ if( x % i == 0 ){ return 0; } } return 1; } int bruteforce( int n, int m ){ // modulo of N! % M int res = 1; for( int i = 1; i <= n; ++i ){ res = 1LL * res * i % m; } return res; } void solve(){ int T; cin >> T; for( int kase = 0; kase < T; ++kase ){ int N, M; cin >> N >> M; if( N >= M ){ cout << 0 << endl; } else if( N <= ( int ) 2e5 ){ cout << bruteforce( N, M ) << endl; } else if( is_prime( M ) ){ // ( M - 1 ) ! % M == ( M - 1 ) // N ! % M == ( M - 1 ) * ( N ! / ( M - 1 ) ! ) int ans = M - 1; for( int i = M; i <= N; ++i ){ ans = 1LL * ans * i % M; } cout << ans << endl; } else{ if( N >= M / 2 ){ cout << 0 << endl; } else{ assert( M <= ( int ) 2e5 and N <= ( int ) 1e5 ); cout << bruteforce( N, M ) << endl; } } } } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }