結果
問題 | No.109 N! mod M |
ユーザー | nebukuro09 |
提出日時 | 2017-11-12 21:32:34 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 2,814 ms / 5,000 ms |
コード長 | 1,117 bytes |
コンパイル時間 | 853 ms |
コンパイル使用メモリ | 117,804 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 22:30:13 |
合計ジャッジ時間 | 4,775 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 152 ms
6,940 KB |
testcase_02 | AC | 123 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 38 ms
6,940 KB |
testcase_05 | AC | 2,814 ms
6,940 KB |
testcase_06 | AC | 12 ms
6,940 KB |
testcase_07 | AC | 161 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; bool is_prime(long n) { for (long i = 2; i * i <= n; ++i) if (n % i == 0) return false; return true; } long powmod(long a, long x, long m) { long ret = 1; while (x) { if (x % 2) ret = ret * a % m; a = a * a % m; x /= 2; } return ret; } long solve() { auto s = readln.split.map!(to!long); auto N = s[0]; auto M = s[1]; if (M == 1) return 0; if (N == 0) return 1; if (N >= M) return 0; if (is_prime(M)) { long ret = M - 1; for (long cnt = M - 1; cnt > N; --cnt) ret = ret * powmod(cnt, M-2, M) % M; return ret; } else if (M < 10^^6) { long ret = 1; for (long i = 2; i <= N; ++i) ret = ret * i % M; return ret; } else { return 0; } } void main() { auto T = readln.chomp.to!int; while (T--) solve.writeln; }