結果

問題 No.1552 Simple Dice Game
ユーザー hongrockhongrock
提出日時 2021-06-18 21:37:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,500 ms
コード長 1,283 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 200,804 KB
実行使用メモリ 11,536 KB
最終ジャッジ日時 2024-06-22 20:01:20
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 157 ms
11,488 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 114 ms
10,748 KB
testcase_10 AC 129 ms
11,424 KB
testcase_11 AC 128 ms
11,100 KB
testcase_12 AC 39 ms
9,936 KB
testcase_13 AC 109 ms
10,708 KB
testcase_14 AC 67 ms
7,496 KB
testcase_15 AC 85 ms
10,152 KB
testcase_16 AC 14 ms
8,056 KB
testcase_17 AC 20 ms
6,940 KB
testcase_18 AC 103 ms
10,440 KB
testcase_19 AC 145 ms
11,400 KB
testcase_20 AC 144 ms
11,420 KB
testcase_21 AC 143 ms
11,536 KB
testcase_22 AC 145 ms
11,520 KB
testcase_23 AC 142 ms
11,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i, a, n) for(int i=(a); i<(n); ++i)
#define per(i, a, n) for(int i=(a); i>(n); --i)
#define pb emplace_back
#define mp make_pair
#define clr(a, b) memset(a, b, sizeof(a))
#define all(x) (x).begin(),(x).end()
#define lowbit(x) (x & -x)
#define fi first
#define se second
#define lson o<<1
#define rson o<<1|1
#define gmid l[o]+r[o]>>1

using LL = long long;
using ULL = unsigned long long;
using pii = pair<int,int>;
using PLL = pair<LL, LL>;
using UI = unsigned int;

const int mod = 998244353;
const int inf = 0x3f3f3f3f;
const double EPS = 1e-8;
const double PI = acos(-1.0);

const int N = 5e5 + 10;
LL a[N], sum[N];
LL n;
int m;

LL pow_mod(LL x, LL p){
	LL s = 1;
	while(p){
		if(p & 1)	s = s * x % mod;
		x = x * x % mod;
		p >>= 1;
	}
	return s;
}

int main(){
	scanf("%lld %d", &n, &m);
	sum[0] = a[0] = 0;
	rep(i, 1, m + 1){
		sum[i] = (sum[i-1] + i) % mod;
		a[i] = pow_mod(i, n - 1);
	}

	LL ans = 0;

	rep(i, 1, m + 1){
		ans = ans + (sum[i] * a[i] % mod + mod - sum[i-1] * a[i-1] % mod) % mod * i % mod;
		ans = ans + ((sum[m] + mod - sum[i-1]) * a[m-i+1] % mod + mod - (sum[m] + mod - sum[i]) % mod * a[m-i]) % mod * (mod - i) % mod;
		ans = ans % mod;
	}
	printf("%lld\n", n % mod * ans % mod);

	
	return 0;
}
0