結果
問題 | No.890 移調の限られた旋法 |
ユーザー | 👑 emthrm |
提出日時 | 2019-09-21 06:06:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 2,292 bytes |
コンパイル時間 | 1,165 ms |
コンパイル使用メモリ | 120,684 KB |
実行使用メモリ | 27,008 KB |
最終ジャッジ日時 | 2024-09-16 05:53:01 |
合計ジャッジ時間 | 3,187 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 66 ms
26,752 KB |
testcase_14 | AC | 60 ms
26,752 KB |
testcase_15 | AC | 57 ms
26,752 KB |
testcase_16 | AC | 61 ms
27,008 KB |
testcase_17 | AC | 51 ms
24,704 KB |
testcase_18 | AC | 52 ms
24,448 KB |
testcase_19 | AC | 31 ms
15,744 KB |
testcase_20 | AC | 21 ms
11,136 KB |
testcase_21 | AC | 7 ms
5,376 KB |
testcase_22 | AC | 43 ms
21,248 KB |
testcase_23 | AC | 53 ms
25,344 KB |
testcase_24 | AC | 29 ms
16,000 KB |
testcase_25 | AC | 9 ms
6,272 KB |
testcase_26 | AC | 53 ms
25,984 KB |
testcase_27 | AC | 55 ms
26,240 KB |
testcase_28 | AC | 36 ms
18,048 KB |
testcase_29 | AC | 23 ms
12,928 KB |
testcase_30 | AC | 50 ms
24,448 KB |
testcase_31 | AC | 30 ms
15,232 KB |
testcase_32 | AC | 50 ms
22,912 KB |
testcase_33 | AC | 57 ms
24,192 KB |
testcase_34 | AC | 50 ms
24,064 KB |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <chrono> #define _USE_MATH_DEFINES #include <cmath> #include <cstdio> #include <cstring> #include <ctime> #include <deque> #include <functional> #include <iostream> #include <iterator> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <string> #include <tuple> #include <utility> #include <vector> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() const int INF = 0x3f3f3f3f; const long long LINF = 0x3f3f3f3f3f3f3f3fLL; const double EPS = 1e-8; const int MOD = 1000000007; // 998244353; const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; /*-------------------------------------------------*/ long long mod_inv(long long a, long long mod = MOD) { a %= mod; if (__gcd(a, mod) != 1) return -1; long long b = mod, x = 1, y = 0; while (b > 0) { long long tmp = a / b; a -= tmp * b; swap(a, b); x -= tmp * y; swap(x, y); } x %= mod; if (x < 0) x += mod; return x; } const int MAX = 10000000; long long fact[MAX + 1], fact_inv[MAX + 1]; void nCk_init(int val = MAX, long long mod = MOD) { fact[0] = 1; FOR(i, 1, val + 1) fact[i] = fact[i - 1] * i % mod; fact_inv[val] = mod_inv(fact[val], mod); for (int i = val; i > 0; --i) fact_inv[i - 1] = fact_inv[i] * i % mod; } long long nCk(int n, int k, long long mod = MOD) { if (n < 0 || n < k || k < 0) return 0; return fact[n] * fact_inv[k] % mod * fact_inv[n - k] % mod; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); // freopen("input.txt", "r", stdin); int n, k; cin >> n >> k; nCk_init(n); vector<long long> dp(n + 1, 0); vector<bool> ok(n + 1, false); FOR(i, 1, n) { if (n % i == 0) { int t = n / __gcd(i, n); if (k % t == 0) { (dp[i] = nCk(n / t, k / t)) %= MOD; ok[i] = true; } } } FOR(i, 1, n + 1) if (ok[i]) { for (int j = i * 2; j <= n; j += i) { if (ok[j]) (dp[j] += MOD - dp[i]) %= MOD; } } long long ans = 0; FOR(i, 1, n + 1) (ans += dp[i]) %= MOD; cout << ans << '\n'; return 0; }