結果

問題 No.1552 Simple Dice Game
ユーザー tassei903tassei903
提出日時 2021-06-18 23:11:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,124 ms / 2,500 ms
コード長 610 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-06-22 21:22:29
合計ジャッジ時間 14,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 1,045 ms
79,872 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 890 ms
78,720 KB
testcase_10 AC 1,000 ms
79,616 KB
testcase_11 AC 1,030 ms
79,360 KB
testcase_12 AC 352 ms
76,672 KB
testcase_13 AC 873 ms
79,104 KB
testcase_14 AC 541 ms
77,568 KB
testcase_15 AC 636 ms
78,080 KB
testcase_16 AC 148 ms
75,904 KB
testcase_17 AC 204 ms
76,288 KB
testcase_18 AC 819 ms
78,720 KB
testcase_19 AC 1,093 ms
79,744 KB
testcase_20 AC 1,124 ms
79,616 KB
testcase_21 AC 1,124 ms
79,488 KB
testcase_22 AC 1,101 ms
79,616 KB
testcase_23 AC 1,119 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")

n,m = na()
mod = 998244353
z = [pow(i,n,mod) for i in range(m+1)]
d2 = pow(2,mod-2,mod)
def g(x):
    return ((z[x]*(x+1)*d2)%mod)*n%mod

def h(x):
    return ((z[m-x+1]*(m+x)*d2)%mod)*n%mod
ans = 0
for k in range(1,m+1):
    #print(g(k)-g(k-1),h(k)-h(k+1))
    ans+=k*(g(k)-g(k-1))%mod
    ans%=mod
    ans-=k*(h(k)-h(k+1))%mod
    ans%=mod
print(ans)
0