結果

問題 No.1552 Simple Dice Game
ユーザー shotoyooshotoyoo
提出日時 2021-06-18 23:08:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,588 ms / 2,500 ms
コード長 702 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-06-22 21:21:36
合計ジャッジ時間 18,673 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 1,315 ms
75,920 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 1,143 ms
75,776 KB
testcase_10 AC 1,306 ms
76,160 KB
testcase_11 AC 1,352 ms
76,160 KB
testcase_12 AC 434 ms
75,904 KB
testcase_13 AC 1,126 ms
75,776 KB
testcase_14 AC 684 ms
76,056 KB
testcase_15 AC 831 ms
75,776 KB
testcase_16 AC 163 ms
70,144 KB
testcase_17 AC 243 ms
72,960 KB
testcase_18 AC 1,066 ms
75,648 KB
testcase_19 AC 1,516 ms
75,648 KB
testcase_20 AC 1,524 ms
75,776 KB
testcase_21 AC 1,527 ms
76,288 KB
testcase_22 AC 1,588 ms
75,776 KB
testcase_23 AC 1,543 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,m = list(map(int, input().split()))
M = 998244353
ans = 0
inv2 = pow(2, M-2, M)
def f(v):
    return inv2 * (n * ((v+1) * pow(v, n, M) % M) % M) % M
def g(v):
    return inv2 * ((m + v) * (n * pow(m-v+1, n, M) % M) % M) % M
# for v in range(1,m+1):
#     ans += v * (f(v) - f(v-1)) % M
#     ans -= v * (g(v) - g(v+1)) % M
#     ans %= M
ans = m*f(m) - g(1)
for v in range(2, m+1):
    ans -= g(v)
    ans %= M
for v in range(1,m):
    ans -= f(v)
    ans %= M
print(ans%M)
0