結果
問題 | No.109 N! mod M |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-01-15 17:01:52 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 315 ms / 5,000 ms |
コード長 | 2,799 bytes |
コンパイル時間 | 2,207 ms |
コンパイル使用メモリ | 77,840 KB |
実行使用メモリ | 43,808 KB |
最終ジャッジ日時 | 2024-06-06 11:31:22 |
合計ジャッジ時間 | 3,917 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
36,572 KB |
testcase_01 | AC | 148 ms
37,572 KB |
testcase_02 | AC | 170 ms
37,876 KB |
testcase_03 | AC | 58 ms
36,724 KB |
testcase_04 | AC | 84 ms
37,940 KB |
testcase_05 | AC | 315 ms
43,808 KB |
testcase_06 | AC | 138 ms
40,664 KB |
testcase_07 | AC | 76 ms
37,460 KB |
testcase_08 | AC | 59 ms
37,164 KB |
ソースコード
import java.io.*; import java.util.*; import java.math.BigInteger; class Main { static long powerMod(long x, long exponent, long MOD) { long prod = 1; for (int i = 63; i >= 0; --i) { prod = (prod * prod) % MOD; if ((exponent & 1L << i) != 0) { prod = (prod * x) % MOD; } } return prod; } static long f(long n,long m){ if(n>=m)return 0; long ret=-1; if(m<=310000){ // brute long ans=1%m; for(long i=1;i<=n;++i)ans=ans*i%m; ret=ans; return ret; //System.err.println("brute="+ans); } boolean pr=BigInteger.valueOf(m).isProbablePrime(20); if(pr){ // Wilson's theorem long ans=m-1; for(long i=m-1;i>n;--i){ ans=ans*i%m; } ret=powerMod(ans,m-2,m); return ret; // System.err.println("wilson="+ret); }else if(m!=4&&2*m<3*n){ // System.err.println("nt=0"); ret=0; } return ret; } public static void main(String[] args) { MyScanner sc = new MyScanner(); out = new PrintWriter(new BufferedOutputStream(System.out)); int t=sc.nextInt(); while(t-->0){ long n=sc.nextLong(); long m=sc.nextLong(); out.println(f(n,m)); } out.close(); } // http://codeforces.com/blog/entry/7018 //-----------PrintWriter for faster output--------------------------------- public static PrintWriter out; //-----------MyScanner class for faster input---------- public static class MyScanner { BufferedReader br; StringTokenizer st; public MyScanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine(){ String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } int[] nextIntArray(int n){ int[]r=new int[n]; for(int i=0;i<n;++i)r[i]=nextInt(); return r; } } }