結果

問題 No.1552 Simple Dice Game
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-18 22:06:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,826 ms / 2,500 ms
コード長 335 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,156 KB
最終ジャッジ日時 2024-06-22 20:28:33
合計ジャッジ時間 21,620 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 1,826 ms
76,032 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 1,307 ms
75,708 KB
testcase_10 AC 1,553 ms
75,876 KB
testcase_11 AC 1,583 ms
75,904 KB
testcase_12 AC 491 ms
75,736 KB
testcase_13 AC 1,244 ms
75,960 KB
testcase_14 AC 794 ms
75,876 KB
testcase_15 AC 944 ms
75,928 KB
testcase_16 AC 174 ms
72,448 KB
testcase_17 AC 270 ms
75,748 KB
testcase_18 AC 1,269 ms
76,156 KB
testcase_19 AC 1,737 ms
76,032 KB
testcase_20 AC 1,757 ms
76,012 KB
testcase_21 AC 1,727 ms
75,856 KB
testcase_22 AC 1,694 ms
75,872 KB
testcase_23 AC 1,739 ms
75,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
mod = 998244353
ans = 0
bef = 0
for i in range(1,m+1):
    all = i*(i+1)//2*pow(i,n-1,mod)*n%mod
    ans += i*(all-bef)
    ans %= mod
    bef = all
bef = 0
for i in range(m,0,-1):
    all = (m*(m+1)//2-i*(i-1)//2)*pow(m+1-i,n-1,mod)*n%mod
    ans -= i*(all-bef)
    ans %= mod
    bef = all  
print(ans)
0