結果

問題 No.1552 Simple Dice Game
ユーザー zkouzkou
提出日時 2021-06-18 22:18:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 62,740 KB
最終ジャッジ日時 2024-06-22 20:44:31
合計ジャッジ時間 10,627 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 692 ms
60,544 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 WA -
testcase_08 AC 38 ms
51,756 KB
testcase_09 AC 623 ms
60,504 KB
testcase_10 WA -
testcase_11 AC 719 ms
60,544 KB
testcase_12 WA -
testcase_13 AC 580 ms
60,416 KB
testcase_14 AC 363 ms
60,416 KB
testcase_15 WA -
testcase_16 AC 101 ms
60,672 KB
testcase_17 AC 143 ms
60,288 KB
testcase_18 WA -
testcase_19 AC 815 ms
60,544 KB
testcase_20 AC 823 ms
60,544 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

half = pow(2, MOD - 2, MOD)

N, M = map(int, input().split())

s = M * pow(M, N, MOD) % MOD
for i in range(M):
    s -= pow(i, N, MOD)
    s %= MOD

# print(s)

answer = N * (M + 1) % MOD * s % MOD
answer -= pow(M, N, MOD) * (M + 1) % MOD * N % MOD * (1 + M) % MOD * half % MOD
print(answer)
0