結果

問題 No.1552 Simple Dice Game
ユーザー convexineqconvexineq
提出日時 2021-06-18 21:47:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 281 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-06-22 20:09:54
合計ジャッジ時間 37,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 TLE -
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 2,332 ms
78,336 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 893 ms
77,696 KB
testcase_13 AC 2,316 ms
78,208 KB
testcase_14 AC 1,418 ms
77,952 KB
testcase_15 AC 1,672 ms
77,952 KB
testcase_16 AC 307 ms
78,080 KB
testcase_17 AC 488 ms
77,824 KB
testcase_18 AC 2,266 ms
77,824 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n,m = map(int,input().split())

nn = n%MOD
def f(x): return x*(x+1)//2%MOD*pow(x,n-1,MOD)%MOD*nn%MOD
def g(x): return (m+x)*(m-x+1)//2%MOD*pow(m-x+1,n-1,MOD)%MOD*nn%MOD

ans = 0
for x in range(1,m+1):
    ans += x*(f(x)-f(x-1)-g(x)+g(x+1))
    ans %= MOD
print(ans)
0