結果

問題 No.890 移調の限られた旋法
ユーザー merom686merom686
提出日時 2019-09-20 22:38:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,601 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 78,320 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-09-14 18:35:20
合計ジャッジ時間 2,132 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 21 ms
12,928 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 9 ms
6,528 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 17 ms
10,664 KB
testcase_23 AC 20 ms
12,416 KB
testcase_24 AC 13 ms
8,448 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 20 ms
12,800 KB
testcase_28 AC 14 ms
9,216 KB
testcase_29 AC 10 ms
7,168 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

constexpr int P = 1000000007;

ll powmod(ll n, ll k) {
    ll r = 1, t = n % P;
    for (; k != 0; k /= 2) {
        if (k & 1) r = r * t % P;
        t = t * t % P;
    }
    return r;
}
ll inv(ll n) {
    return powmod(n, P - 2);
}

vector<int> f0, f1;
void init(int n) {
    f0.resize(n + 1);
    f0[0] = 1;
    for (int i = 1; i <= n; i++) {
        f0[i] = (ll)f0[i - 1] * i % P;
    }
    f1.resize(n + 1);
    f1[n] = inv(f0[n]);
    for (int i = n; i > 0; i--) {
        f1[i - 1] = (ll)f1[i] * i % P;
    }
}
ll fact(int k) {
    return f0[k];
}
ll comb(int n, int k) {
    if (n < k || k < 0) return 0;
    return (ll)f0[n] * f1[k] % P * f1[n - k] % P;
}

int main() {
    int n, k;
    cin >> n >> k;

    if (n == k) {
        cout << 1 << endl;
        exit(0);
    }

    init(n);

    ll r = 0;
    //長さlのm個に分ける それぞれにc個入る
    //長さがlの約数のやつはカウント済み
    vector<int> b(n / 2 + 1, 0);
    for (int l = n / 2; l >= 2; l--) {
        if (n % l == 0) {
            int m = n / l;
            if (k % m == 0) {
                int x = 1;
                for (int i = l * 2; i <= n / 2; i += l) {
                    x -= b[i];
                }
                int c = k / m;
                r += comb(l, c) * x;
                r %= P;
                b[l] = 1;
            }
        }
    }

    if (r < 0) r += P;

    cout << r << endl;

    return 0;
}
0