結果

問題 No.1552 Simple Dice Game
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-06-18 22:36:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 546 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 108,800 KB
最終ジャッジ日時 2024-06-22 21:01:32
合計ジャッジ時間 34,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,560 KB
testcase_01 AC 33 ms
53,208 KB
testcase_02 AC 33 ms
52,196 KB
testcase_03 AC 2,484 ms
107,440 KB
testcase_04 AC 33 ms
53,600 KB
testcase_05 AC 33 ms
52,528 KB
testcase_06 AC 33 ms
52,872 KB
testcase_07 AC 33 ms
52,348 KB
testcase_08 AC 32 ms
52,408 KB
testcase_09 AC 2,164 ms
99,656 KB
testcase_10 AC 2,499 ms
103,188 KB
testcase_11 TLE -
testcase_12 AC 786 ms
80,144 KB
testcase_13 AC 2,125 ms
100,184 KB
testcase_14 AC 1,276 ms
86,332 KB
testcase_15 AC 1,526 ms
90,988 KB
testcase_16 AC 255 ms
73,692 KB
testcase_17 AC 405 ms
75,156 KB
testcase_18 AC 2,010 ms
96,600 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import sys
import math

mod = 998244353
def inverse(x):
    return pow(x,mod-2,mod)
half = inverse(2)


N,M = map(int,stdin.readline().split())
ans = 0

dp = []

nowok = 0

for K in range(M):

    a = M-K
    if K != 0:
        nowok += pow(K,N,mod) - pow(K-1,N,mod)
    else:
        nowok += pow(K,N,mod)
    nowok %= mod

    other = (pow(K+1,N,mod) - pow(K,N,mod)) * (M-K)

    dp.append((nowok + other) % mod)

dp.append(0)
ans = 0
for K in range(M):
    ans += (dp[K]-dp[K-1]) * K

print (ans * (M+1) * N * half % mod)
0