結果

問題 No.1552 Simple Dice Game
ユーザー H3PO4H3PO4
提出日時 2022-10-15 09:53:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,165 ms / 2,500 ms
コード長 520 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 80,592 KB
最終ジャッジ日時 2024-06-26 19:37:08
合計ジャッジ時間 14,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,260 KB
testcase_01 AC 37 ms
53,076 KB
testcase_02 AC 37 ms
53,200 KB
testcase_03 AC 1,165 ms
80,516 KB
testcase_04 AC 37 ms
52,612 KB
testcase_05 AC 36 ms
52,372 KB
testcase_06 AC 36 ms
53,008 KB
testcase_07 AC 36 ms
52,808 KB
testcase_08 AC 36 ms
52,656 KB
testcase_09 AC 864 ms
79,716 KB
testcase_10 AC 1,010 ms
80,156 KB
testcase_11 AC 1,012 ms
79,924 KB
testcase_12 AC 296 ms
76,776 KB
testcase_13 AC 868 ms
79,404 KB
testcase_14 AC 543 ms
78,348 KB
testcase_15 AC 637 ms
78,656 KB
testcase_16 AC 123 ms
75,992 KB
testcase_17 AC 173 ms
76,252 KB
testcase_18 AC 832 ms
79,512 KB
testcase_19 AC 1,113 ms
80,424 KB
testcase_20 AC 1,127 ms
80,176 KB
testcase_21 AC 1,099 ms
80,592 KB
testcase_22 AC 1,108 ms
80,568 KB
testcase_23 AC 1,126 ms
80,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

pow_table = [pow(k, N - 1, MOD) for k in range(M + 1)]


def tri(x):
    return x * (x + 1) // 2


def fix_max(k):
    return k * N * (tri(k) * pow_table[k] - tri(k - 1) * pow_table[k - 1]) % MOD


def fix_min(k):
    return k * N * ((tri(M) - tri(k - 1)) * pow_table[M - k + 1] - (tri(M) - tri(k)) * pow_table[M - k]) % MOD


ans = 0
for k in range(1, M + 1):
    # print(k, fix_max(k), fix_min(k))
    ans += fix_max(k)
    ans -= fix_min(k)
    ans %= MOD
print(ans)
0