結果
問題 | No.890 移調の限られた旋法 |
ユーザー | ganariya |
提出日時 | 2019-09-22 21:46:40 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 361 ms / 2,000 ms |
コード長 | 2,839 bytes |
コンパイル時間 | 1,626 ms |
コンパイル使用メモリ | 148,784 KB |
実行使用メモリ | 42,240 KB |
最終ジャッジ日時 | 2024-09-19 03:44:19 |
合計ジャッジ時間 | 14,371 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 317 ms
34,688 KB |
testcase_01 | AC | 319 ms
34,688 KB |
testcase_02 | AC | 317 ms
34,688 KB |
testcase_03 | AC | 317 ms
34,688 KB |
testcase_04 | AC | 319 ms
34,560 KB |
testcase_05 | AC | 326 ms
34,688 KB |
testcase_06 | AC | 328 ms
34,688 KB |
testcase_07 | AC | 322 ms
34,688 KB |
testcase_08 | AC | 319 ms
34,688 KB |
testcase_09 | AC | 327 ms
34,688 KB |
testcase_10 | AC | 327 ms
34,688 KB |
testcase_11 | AC | 316 ms
34,688 KB |
testcase_12 | AC | 330 ms
34,816 KB |
testcase_13 | AC | 360 ms
42,240 KB |
testcase_14 | AC | 350 ms
42,240 KB |
testcase_15 | AC | 348 ms
42,240 KB |
testcase_16 | AC | 355 ms
42,240 KB |
testcase_17 | AC | 356 ms
41,600 KB |
testcase_18 | AC | 359 ms
41,600 KB |
testcase_19 | AC | 337 ms
38,656 KB |
testcase_20 | AC | 332 ms
37,120 KB |
testcase_21 | AC | 330 ms
35,200 KB |
testcase_22 | AC | 337 ms
40,448 KB |
testcase_23 | AC | 349 ms
41,984 KB |
testcase_24 | AC | 343 ms
38,784 KB |
testcase_25 | AC | 330 ms
35,584 KB |
testcase_26 | AC | 344 ms
42,112 KB |
testcase_27 | AC | 335 ms
42,240 KB |
testcase_28 | AC | 333 ms
39,424 KB |
testcase_29 | AC | 328 ms
37,760 KB |
testcase_30 | AC | 361 ms
41,472 KB |
testcase_31 | AC | 354 ms
38,400 KB |
testcase_32 | AC | 356 ms
40,960 KB |
testcase_33 | AC | 352 ms
41,472 KB |
testcase_34 | AC | 352 ms
41,472 KB |
ソースコード
//include //------------------------------------------ #include <vector> #include <list> #include <map> #include <unordered_map> #include <climits> #include <set> #include <unordered_set> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> #include <queue> #include <random> #include <complex> #include <regex> #include <locale> #include <random> #include <type_traits> using namespace std; #define SHOW_VECTOR(v) {std::cerr << #v << "\t:";for(const auto& xxx : v){std::cerr << xxx << " ";}std::cerr << "\n";} #define SHOW_MAP(v){std::cerr << #v << endl; for(const auto& xxx: v){std::cerr << xxx.first << " " << xxx.second << "\n";}} using LL = long long; //------------------------------------------ //------------------------------------------ constexpr LL mod = 1e9 + 7; constexpr LL MAX_N = 2000200; LL POW_MOD(LL N, LL P, LL M) { LL ret = 1; while (P > 0) { if (P & 1LL) ret = (ret * N) % M; N = (N * N) % M; P >>= 1LL; } return ret; } LL fac[MAX_N]; LL inv[MAX_N]; void setup() { fac[0] = fac[1] = 1; inv[0] = inv[1] = 1; for (LL i = 2; i < MAX_N; i++) { fac[i] = fac[i - 1] * i; fac[i] %= mod; inv[i] = POW_MOD(fac[i], mod - 2, mod); } } LL nCr_mod(LL n, LL r) { if (r < 0 || r > n) return 0; return fac[n] * inv[r] % mod * inv[n - r] % mod; } template<typename T> vector<T> DIVISOR(T n) { vector<T> v; for (T i = 1; i * i <= n; ++i) { if (n % i == 0) { v.push_back(i); if (i != n / i) { v.push_back(n / i); } } } sort(v.begin(), v.end()); return v; } template<typename T> vector<vector<T>> DIVISOR_ALL(T n) { vector<vector<T>> res(n + 1); for (T i = 1; i <= n; i++) { for (T j = i; j <= n; j += i) { res[j].push_back(i); } } return res; } int main() { setup(); LL N, K; cin >> N >> K; auto divisors = DIVISOR(N); vector<LL> dp(N + 1, 0); // x回回して回転対称 for (auto x: divisors) { LL P = N / x; if (K % P == 0) { dp[x] = nCr_mod(N / P, K / P); } } for (auto x: divisors) { for (LL y = x * 2; y <= N; y += x) { if (N % y == 0) { dp[y] -= dp[x]; dp[y] += mod; dp[y] %= mod; } } } LL ans = 0; for (LL i = 0; i < N; i++) { ans += dp[i]; ans %= mod; } cout << ans << endl; return 0; }