結果

問題 No.2351 Butterfly in Summer
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-16 21:29:59
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 947 ms
コンパイル使用メモリ 104,580 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 13:03:52
合計ジャッジ時間 1,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>

using namespace std;

using ll = long long;
const ll modc=998244353;
ll mod_exp(ll b, ll e, ll m){
    if (e > 0 && b == 0) return 0;
    ll ans = 1;
    b %= m;

    while (e > 0){
        if ((e & 1LL)) ans = (ans * b) % m;
        e = e >> 1LL;
        b = (b*b) % m;
    }

    return ans;
}

int main(){

    ll K, N, a;
    cin >> N >> K;
    a = mod_exp(K, N-1, modc);

    cout << (K-1) * N % modc * mod_exp(a, modc-2, modc)% modc <<  endl;

    return 0;
}
0