結果
問題 | No.1897 Sum of 2nd Max |
ユーザー | ぷら |
提出日時 | 2022-04-08 21:34:37 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 82 ms / 2,000 ms |
コード長 | 629 bytes |
コンパイル時間 | 1,870 ms |
コンパイル使用メモリ | 194,144 KB |
最終ジャッジ日時 | 2025-01-28 15:54:21 |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 30 |
ソースコード
#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() { int N,K; cin >> N >> K; int ans = 0; for(int i = 1; i <= K; i++) { ans += 1ll*(K-i)*N%mod*i%mod*(modpow(i,N-1)+mod-modpow(i-1,N-1))%mod; ans %= mod; ans += 1ll*i*((modpow(i,N)+mod-modpow(i-1,N))%mod+mod-1ll*N*modpow(i-1,N-1)%mod)%mod; ans %= mod; } cout << ans << endl; }