結果

問題 No.2351 Butterfly in Summer
ユーザー tahamidcsetahamidcse
提出日時 2023-06-16 23:06:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,152 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 64,324 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 16:10:28
合計ジャッジ時間 1,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define int long long
using namespace std;

const int MOD = 998244353;

// Function to calculate the modular inverse of 'a' modulo 'm'
int modularInverse(int a, int m) {
    int m0 = m, t, q;
    int x0 = 0, x1 = 1;

    if (m == 1)
        return 0;

    // Apply extended Euclidean algorithm
    while (a > 1) {
        q = a / m;
        t = m;
        m = a % m, a = t;
        t = x0;
        x0 = x1 - q * x0;
        x1 = t;
    }

    // Make sure x1 is positive
    if (x1 < 0)
        x1 += m0;

    return x1;
}

// Function to calculate ((n * k) / k^n) % 998244353
int calculateExpression(int n, int k) {
    int numerator = (n * k) % MOD;
    int denominator = modularInverse(k, MOD);
    int exponent = n;

    // Calculate numerator * denominator^exponent modulo MOD
    int result = numerator;
    while (exponent > 0) {
        result = (result * denominator) % MOD;
        exponent--;
    }

    return result;
}

int32_t main() {
    int n, k;
    cout << "Enter the values of n and k: ";
    cin >> n >> k;

    int result = calculateExpression(n, k);
    cout << "Result: " << result << endl;

    return 0;
}
0