結果

問題 No.1552 Simple Dice Game
ユーザー ygd.ygd.
提出日時 2021-06-18 21:52:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 971 ms / 2,500 ms
コード長 633 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 112,500 KB
最終ジャッジ日時 2024-06-22 20:16:40
合計ジャッジ時間 12,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,400 KB
testcase_01 AC 33 ms
53,040 KB
testcase_02 AC 35 ms
53,504 KB
testcase_03 AC 971 ms
112,368 KB
testcase_04 AC 34 ms
52,728 KB
testcase_05 AC 35 ms
52,572 KB
testcase_06 AC 32 ms
53,012 KB
testcase_07 AC 32 ms
53,232 KB
testcase_08 AC 32 ms
52,524 KB
testcase_09 AC 739 ms
104,168 KB
testcase_10 AC 842 ms
108,596 KB
testcase_11 AC 879 ms
108,388 KB
testcase_12 AC 289 ms
83,284 KB
testcase_13 AC 755 ms
104,312 KB
testcase_14 AC 465 ms
90,968 KB
testcase_15 AC 537 ms
95,456 KB
testcase_16 AC 110 ms
77,236 KB
testcase_17 AC 153 ms
78,760 KB
testcase_18 AC 702 ms
101,072 KB
testcase_19 AC 928 ms
112,172 KB
testcase_20 AC 951 ms
112,064 KB
testcase_21 AC 923 ms
112,332 KB
testcase_22 AC 921 ms
112,500 KB
testcase_23 AC 953 ms
112,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    mod = 998244353
    N,M = map(int,input().split())
    mx = 0
    pown = [0]
    for i in range(1,M+1):
        temp = pow(i,N-1,mod)
        pown.append(temp)


    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
        temp = (i*(i+1)//2)*pown[i]*N - ((i-1)*i//2)*pown[i-1]*N
        mx += temp*i
        mx %= mod
    mn = 0
    for i in range(1,M+1):
        temp = ((M+i)*(M-i+1)//2)*pown[M-i+1]*N - ((M+i+1)*(M-i)//2)*pown[M-i]*N
        mn += temp*i
        mn %= mod
    
    ans = mx - mn
    print(ans%mod)


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