結果

問題 No.1552 Simple Dice Game
ユーザー Kiri8128Kiri8128
提出日時 2021-06-18 21:58:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 370 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-06-22 20:21:26
合計ジャッジ時間 39,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 TLE -
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 2,479 ms
76,952 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 930 ms
76,844 KB
testcase_13 AC 2,453 ms
76,896 KB
testcase_14 AC 1,493 ms
76,720 KB
testcase_15 AC 1,786 ms
77,016 KB
testcase_16 AC 318 ms
77,440 KB
testcase_17 AC 504 ms
76,956 KB
testcase_18 AC 2,380 ms
76,692 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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