結果
問題 | No.2351 Butterfly in Summer |
ユーザー | ぷら |
提出日時 | 2023-06-16 21:22:52 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 461 bytes |
コンパイル時間 | 2,095 ms |
コンパイル使用メモリ | 200,216 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 12:51:28 |
合計ジャッジ時間 | 2,875 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include<bits/stdc++.h> using namespace std; constexpr int mod = 998244353; long long modpow(long long a,long long b) { long long ans = 1; while(b) { if(b & 1) { (ans *= a) %= mod; } (a *= a) %= mod; b /= 2; } return ans; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N,K; cin >> N >> K; cout << 1ll*K*(K-1)%mod*N%mod*modpow(modpow(K,N),mod-2)%mod << "\n"; }