結果

問題 No.890 移調の限られた旋法
ユーザー pockynypockyny
提出日時 2021-12-18 03:39:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 69,632 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-09-15 04:57:40
合計ジャッジ時間 6,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
26,752 KB
testcase_01 AC 31 ms
26,880 KB
testcase_02 AC 31 ms
26,880 KB
testcase_03 AC 31 ms
26,880 KB
testcase_04 AC 31 ms
27,008 KB
testcase_05 AC 34 ms
26,880 KB
testcase_06 AC 32 ms
26,880 KB
testcase_07 AC 31 ms
26,752 KB
testcase_08 AC 31 ms
26,880 KB
testcase_09 AC 32 ms
26,752 KB
testcase_10 AC 32 ms
26,880 KB
testcase_11 AC 33 ms
26,880 KB
testcase_12 AC 31 ms
26,752 KB
testcase_13 AC 238 ms
34,560 KB
testcase_14 AC 256 ms
34,560 KB
testcase_15 AC 236 ms
34,688 KB
testcase_16 AC 236 ms
34,656 KB
testcase_17 AC 207 ms
33,792 KB
testcase_18 AC 209 ms
33,920 KB
testcase_19 AC 128 ms
30,976 KB
testcase_20 AC 92 ms
29,568 KB
testcase_21 AC 42 ms
27,520 KB
testcase_22 AC 178 ms
32,896 KB
testcase_23 AC 229 ms
34,176 KB
testcase_24 AC 130 ms
31,104 KB
testcase_25 AC 50 ms
28,032 KB
testcase_26 AC 211 ms
34,432 KB
testcase_27 AC 221 ms
34,560 KB
testcase_28 AC 152 ms
31,616 KB
testcase_29 AC 106 ms
30,080 KB
testcase_30 AC 202 ms
33,792 KB
testcase_31 AC 123 ms
30,848 KB
testcase_32 AC 192 ms
33,408 KB
testcase_33 AC 211 ms
33,792 KB
testcase_34 AC 197 ms
33,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
using ll = long long;
const int MX = 1000100;
ll f[MX],inv[MX],fi[MX];
constexpr ll mod = 1000000007;
void solve(){
    inv[1] = 1;
    for(int i=2;i<MX;i++){
        inv[i] = mod - (mod/i)*inv[mod%i]%mod;
    }
    f[0] = fi[0] = 1;
    for(int i=1;i<MX;i++){
        f[i] = f[i-1]*i%mod;
        fi[i] = fi[i-1]*inv[i]%mod;
    }
}

ll nck(ll n, ll k){
    if(n<0 || k<0 || n<k) return 0;
    return f[n]*fi[k]%mod*fi[n-k]%mod;
}

ll pw(ll a,ll x){
    ll ret = 1;
    while(x){
        if(x&1) (ret *= a) %= mod;
        (a *= a) %= mod; x /= 2;
    }
    return ret;
}

int gcd(int x,int y){
    if(x<y) swap(x,y);
    if(y==0) return x;
    return gcd(x%y,y);
}

ll cnt[1000010];
int main(){
    int i,j,n,k; cin >> n >> k;
    solve();
    for(i=1;i<n;i++){
        int x = n/gcd(i,n);
        if(k%x!=0) continue;
        cnt[i] = nck(n/x,k/x);
    }
    for(i=1;i<=n;i++){
        for(j=2*i;j<=n;j+=i) (cnt[j] += mod - cnt[i]) %= mod;
    }
    ll ans = 0;
    for(i=1;i<n;i++) (ans += cnt[i]) %= mod;
    cout << ans << endl;
}
0