結果

問題 No.1552 Simple Dice Game
ユーザー ygd.ygd.
提出日時 2021-06-18 21:48:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 494 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-06-22 20:11:11
合計ジャッジ時間 37,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 TLE -
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 2,314 ms
76,160 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 845 ms
75,648 KB
testcase_13 AC 2,289 ms
76,032 KB
testcase_14 AC 1,383 ms
75,904 KB
testcase_15 AC 1,662 ms
75,776 KB
testcase_16 AC 275 ms
75,648 KB
testcase_17 AC 438 ms
75,648 KB
testcase_18 AC 2,221 ms
76,160 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def main():
    mod = 998244353
    N,M = map(int,input().split())
    mx = 0
    for i in range(1,M+1): #1-M
        temp = (i*(i+1)//2)*pow(i,N-1,mod)*N - ((i-1)*i//2)*pow(i-1,N-1,mod)*N
        mx += temp*i
        mx %= mod
    mn = 0
    for i in range(1,M+1):
        temp = ((M+i)*(M-i+1)//2)*pow(M-i+1,N-1,mod)*N - ((M+i+1)*(M-i)//2)*pow(M-i,N-1,mod)*N
        mn += temp*i
        mn %= mod
    
    ans = mx - mn
    print(ans%mod)


if __name__ == '__main__':
    main()
0