結果

問題 No.1552 Simple Dice Game
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-04-02 17:41:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,500 ms
コード長 542 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 205,376 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 23:15:42
合計ジャッジ時間 4,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 118 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 91 ms
6,820 KB
testcase_10 AC 108 ms
6,816 KB
testcase_11 AC 109 ms
6,816 KB
testcase_12 AC 32 ms
6,816 KB
testcase_13 AC 92 ms
6,816 KB
testcase_14 AC 56 ms
6,816 KB
testcase_15 AC 68 ms
6,820 KB
testcase_16 AC 11 ms
6,820 KB
testcase_17 AC 16 ms
6,816 KB
testcase_18 AC 83 ms
6,820 KB
testcase_19 AC 122 ms
6,816 KB
testcase_20 AC 134 ms
6,816 KB
testcase_21 AC 129 ms
6,820 KB
testcase_22 AC 124 ms
6,820 KB
testcase_23 AC 121 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace atcoder;
using namespace std;
using ll = long long;
using mint = modint998244353;
ll inf = 1e9;
int main() {
	ll N, M;cin >> N >> M;
	vector<mint> POW(M + 1, 0);
	for (ll i = 1;i <= M;i++) POW[i] = mint(i).pow(N);
	mint ans = 0;
	for (ll k = 1;k <= M;k++) {
		mint d = POW[k] - POW[k - 1];
		d *= mint(k);
		ans += d;
		d = POW[M - k + 1] - POW[M - k];
		d *= mint(k);
		ans -= d;
	}
	ans *= mint(N);
	ans *= mint(M + 1);
	ans *= mint(2).inv();
	cout << ans.val() << endl;
}
0