結果

問題 No.1552 Simple Dice Game
ユーザー Kiri8128Kiri8128
提出日時 2021-06-18 22:01:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 840 ms / 2,500 ms
コード長 375 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-06-22 20:22:37
合計ジャッジ時間 11,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 39 ms
52,080 KB
testcase_03 AC 840 ms
62,976 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 616 ms
62,080 KB
testcase_10 AC 715 ms
62,208 KB
testcase_11 AC 738 ms
62,336 KB
testcase_12 AC 243 ms
62,464 KB
testcase_13 AC 593 ms
62,208 KB
testcase_14 AC 374 ms
62,456 KB
testcase_15 AC 435 ms
61,952 KB
testcase_16 AC 101 ms
62,208 KB
testcase_17 AC 143 ms
62,592 KB
testcase_18 AC 587 ms
62,208 KB
testcase_19 AC 799 ms
62,208 KB
testcase_20 AC 815 ms
62,208 KB
testcase_21 AC 782 ms
62,336 KB
testcase_22 AC 780 ms
62,208 KB
testcase_23 AC 804 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 998244353
N, M = map(int, input().split())
ans = 0
s = 0
for i in range(1, M + 1):
    po = pow(i, N - 1, P)
    ans += i * (i + 1) // 2 % P * i % P * po
    s += M - i + 1
    s %= P
    ans -= s * (M - i + 1) % P * po
    if i < M:
        ans -= i * (i + 1) // 2 % P * (i + 1) % P * po
        ans += s * (M - i + 0) % P * po
    ans %= P

ans *= N
ans %= P
print(ans)
0