結果

問題 No.1259 スイッチ
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-13 15:25:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 204,868 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-10-03 00:10:01
合計ジャッジ時間 5,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,712 KB
testcase_01 AC 29 ms
19,584 KB
testcase_02 AC 29 ms
19,712 KB
testcase_03 AC 29 ms
19,712 KB
testcase_04 AC 29 ms
19,712 KB
testcase_05 AC 29 ms
19,712 KB
testcase_06 AC 28 ms
19,712 KB
testcase_07 AC 29 ms
19,840 KB
testcase_08 AC 30 ms
19,584 KB
testcase_09 AC 29 ms
19,712 KB
testcase_10 AC 40 ms
21,888 KB
testcase_11 AC 46 ms
23,168 KB
testcase_12 AC 38 ms
21,888 KB
testcase_13 AC 35 ms
20,992 KB
testcase_14 AC 37 ms
21,504 KB
testcase_15 AC 37 ms
20,864 KB
testcase_16 AC 43 ms
22,656 KB
testcase_17 AC 38 ms
21,248 KB
testcase_18 AC 44 ms
22,912 KB
testcase_19 AC 43 ms
23,040 KB
testcase_20 AC 40 ms
21,888 KB
testcase_21 AC 46 ms
23,296 KB
testcase_22 AC 35 ms
20,608 KB
testcase_23 AC 43 ms
22,784 KB
testcase_24 AC 39 ms
22,016 KB
testcase_25 AC 39 ms
22,016 KB
testcase_26 AC 44 ms
23,296 KB
testcase_27 AC 43 ms
22,656 KB
testcase_28 AC 40 ms
22,016 KB
testcase_29 AC 44 ms
22,528 KB
testcase_30 AC 38 ms
21,504 KB
testcase_31 AC 42 ms
22,272 KB
testcase_32 AC 35 ms
20,608 KB
testcase_33 AC 45 ms
23,296 KB
testcase_34 AC 38 ms
21,632 KB
testcase_35 AC 42 ms
22,400 KB
testcase_36 AC 43 ms
22,144 KB
testcase_37 AC 41 ms
22,144 KB
testcase_38 AC 39 ms
21,760 KB
testcase_39 AC 45 ms
23,296 KB
testcase_40 AC 47 ms
23,296 KB
testcase_41 AC 42 ms
22,656 KB
testcase_42 AC 44 ms
23,296 KB
testcase_43 AC 38 ms
21,760 KB
testcase_44 AC 44 ms
23,168 KB
testcase_45 AC 47 ms
23,552 KB
testcase_46 AC 40 ms
21,760 KB
testcase_47 AC 46 ms
23,296 KB
testcase_48 AC 38 ms
21,376 KB
testcase_49 AC 47 ms
23,296 KB
testcase_50 AC 38 ms
21,632 KB
testcase_51 AC 33 ms
20,608 KB
testcase_52 AC 46 ms
23,168 KB
testcase_53 AC 36 ms
21,120 KB
testcase_54 AC 44 ms
23,296 KB
testcase_55 AC 35 ms
20,736 KB
testcase_56 AC 37 ms
21,376 KB
testcase_57 AC 42 ms
22,784 KB
testcase_58 AC 40 ms
21,760 KB
testcase_59 AC 40 ms
22,272 KB
testcase_60 AC 44 ms
23,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint1000000007;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

mint fac[1 << 21], inv[1 << 21];
void init() {
    fac[0] = 1;
    for (int i = 1; i < (1 << 21); i++) {
        fac[i] = fac[i - 1] * i;
    }
    inv[(1 << 21) - 1] = fac[(1 << 21) - 1].inv();
    for (int i = (1 << 21) - 2; i >= 0; i--) {
        inv[i] = inv[i + 1] * (i + 1);
    }
}
mint binom(int n, int k) { return fac[n] * inv[k] * inv[n - k]; }
mint perm(int n, int k) { return fac[n] * inv[n - k]; }
int main() {
    fast_io();
    init();
    int n, m;
    long long k;
    cin >> n >> k >> m;
    mint ans = 0;
    vector<mint> npow(n + 1);
    npow[0] = 1;
    for (int i = 1; i <= n; i++) {
        npow[i] = npow[i - 1] * n;
    }
    for (long long i = 1; i <= n; i++) {
        if (k % i == 0) {
            ans += perm(n - 1, i - 1) * npow[n - i];
        }
    }
    if (m != 1) {
        ans = (npow[n] - ans) / (n - 1);
    }
    cout << ans.val() << endl;
}
0