結果

問題 No.890 移調の限られた旋法
ユーザー totori_nyaatotori_nyaa
提出日時 2019-09-21 15:46:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,379 bytes
コンパイル時間 1,677 ms
コンパイル使用メモリ 167,816 KB
実行使用メモリ 34,776 KB
最終ジャッジ日時 2024-09-19 00:10:29
合計ジャッジ時間 4,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
26,752 KB
testcase_02 WA -
testcase_03 AC 27 ms
26,880 KB
testcase_04 AC 26 ms
26,752 KB
testcase_05 AC 25 ms
26,880 KB
testcase_06 WA -
testcase_07 AC 27 ms
26,752 KB
testcase_08 AC 25 ms
26,772 KB
testcase_09 AC 28 ms
26,776 KB
testcase_10 AC 25 ms
26,752 KB
testcase_11 AC 27 ms
26,624 KB
testcase_12 AC 27 ms
26,752 KB
testcase_13 WA -
testcase_14 AC 42 ms
34,688 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 35 ms
29,496 KB
testcase_21 AC 27 ms
27,492 KB
testcase_22 WA -
testcase_23 AC 40 ms
34,176 KB
testcase_24 AC 35 ms
31,104 KB
testcase_25 AC 29 ms
27,756 KB
testcase_26 WA -
testcase_27 AC 41 ms
34,304 KB
testcase_28 AC 37 ms
31,744 KB
testcase_29 AC 36 ms
30,080 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;


const int MAX = 1000010;
const int mod = 1000000007;
long long fac[MAX], finv[MAX], inv[MAX];

// テーブルを作る前処理
void COMinit() {
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % mod;
        inv[i] = mod - inv[mod%i] * (mod / i) % mod;
        finv[i] = finv[i - 1] * inv[i] % mod;
    }
}

// 二項係数計算
long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % mod) % mod;
}

long long gcd(long long a, long long b){
    if(b==0) return a;
    return gcd(b,a%b);
}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(20);

    ll n,k;

    cin>>n>>k;
    ll dp[n]={};
    ll g = gcd(n,k);
    COMinit();
    for(int i=1;i<n;i++){
        if(g%i) continue;
        dp[i] += COM(n/i,k/i);
    }
    ll ans = 0;
    for(int i=n-1;i>=2;i--){
        if(dp[i]==0) continue;
        //cerr << i<<" " << dp[i]<<endl;
        ans += dp[i];
        ans %= mod;
        for(int j=1;j*j<=i;j++){
            if(i%j) continue;
            dp[j] += mod - dp[i];
            dp[j] %= mod;
            if(j*j!=i) (dp[i/j] += mod - dp[i])%=mod;
        }
    }
    cout << ans << endl;


}
0