結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー ozraruozraru
提出日時 2023-05-28 15:59:45
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,013 bytes
コンパイル時間 2,889 ms
コンパイル使用メモリ 200,292 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-12-27 10:25:07
合計ジャッジ時間 49,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 WA -
testcase_02 TLE -
testcase_03 AC 1,445 ms
8,704 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 AC 1,891 ms
10,624 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,591 ms
5,248 KB
testcase_12 AC 803 ms
5,248 KB
testcase_13 TLE -
testcase_14 AC 256 ms
5,248 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <numeric>
// #include <atcoder/modint>

using namespace std;
// using namespace atcoder;

// using mint = modint998244353;

#define i64 int_fast64_t

const i64 INF = INT64_MAX;

const i64 ERR = INT64_MIN;

const i64 MOD = 1000000007;

// 切り上げ
i64 ceil_devide(i64 x, i64 y) {
    return (x + y - 1) / y;
}

// 切り捨て
i64 floor_devide(i64 x, i64 y) {
    return x / y;
}

i64 sum_linear(i64 n) {
    return n * (n+1) / 2;
}

int main()
{
    i64 n,p;
    cin >> n >> p;

    i64 p_num = 0;

    i64 res = 0;

    i64 po = 1;

    for (size_t i = 1; true; i++)
    {
        po *= p;
        i64 add = n / po;
        if (add < 1) {
            break;
        }
        res += n / pow(p, i);
    }

    i64 kaizyou = 1;
    
    for (size_t i = 1; i <= n; i++)
    {
        kaizyou *= i;
        kaizyou %= MOD;
    }

    for (size_t i = 0; i < kaizyou; i++)
    {
        res *= kaizyou;
        res %= MOD;
    }
    
    
    cout << res << endl;

    return 0;
}
0