結果

問題 No.1552 Simple Dice Game
ユーザー nok0nok0
提出日時 2021-05-14 21:24:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 414 ms / 2,500 ms
コード長 400 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 204,408 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 19:34:00
合計ジャッジ時間 7,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 404 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 316 ms
6,944 KB
testcase_10 AC 366 ms
6,944 KB
testcase_11 AC 373 ms
6,940 KB
testcase_12 AC 108 ms
6,944 KB
testcase_13 AC 317 ms
6,940 KB
testcase_14 AC 184 ms
6,940 KB
testcase_15 AC 234 ms
6,940 KB
testcase_16 AC 35 ms
6,944 KB
testcase_17 AC 53 ms
6,940 KB
testcase_18 AC 286 ms
6,940 KB
testcase_19 AC 411 ms
6,944 KB
testcase_20 AC 414 ms
6,944 KB
testcase_21 AC 413 ms
6,944 KB
testcase_22 AC 412 ms
6,944 KB
testcase_23 AC 412 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;

mint res;
int main() {
	long long n;
	int m;
	cin >> n >> m;
	for(int diff = 1; diff < m; diff++) {
		mint tmp = mint(diff + 1).pow(n) - mint(diff).pow(n) * 2 + mint(diff - 1).pow(n);
		res += tmp * diff * (m - diff);
	}
	res *= n;
	res *= m + 1;
	res /= 2;
	cout << res.val() << '\n';
}
0