結果

問題 No.2351 Butterfly in Summer
ユーザー timitimi
提出日時 2023-06-16 21:25:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 59,300 KB
最終ジャッジ日時 2024-06-24 12:56:21
合計ジャッジ時間 2,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,992 KB
testcase_01 AC 42 ms
53,012 KB
testcase_02 AC 37 ms
53,020 KB
testcase_03 AC 42 ms
58,840 KB
testcase_04 AC 37 ms
53,184 KB
testcase_05 AC 41 ms
58,552 KB
testcase_06 AC 42 ms
58,268 KB
testcase_07 AC 42 ms
58,532 KB
testcase_08 AC 42 ms
58,628 KB
testcase_09 AC 41 ms
58,708 KB
testcase_10 AC 41 ms
58,176 KB
testcase_11 AC 42 ms
58,076 KB
testcase_12 AC 48 ms
59,252 KB
testcase_13 AC 42 ms
58,168 KB
testcase_14 AC 42 ms
59,300 KB
testcase_15 AC 42 ms
58,116 KB
testcase_16 AC 41 ms
58,772 KB
testcase_17 AC 41 ms
58,296 KB
testcase_18 AC 42 ms
58,668 KB
testcase_19 AC 41 ms
58,928 KB
testcase_20 AC 42 ms
59,100 KB
testcase_21 AC 42 ms
58,248 KB
testcase_22 AC 38 ms
53,148 KB
testcase_23 AC 42 ms
58,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
mod=998244353
ans=K*(K-1)*N%mod

def xgcd(a, b):
    x0, y0, x1, y1 = 1, 0, 0, 1
    while b != 0:
        q, a, b = a // b, b, a % b
        x0, x1 = x1, x0 - q * x1
        y0, y1 = y1, y0 - q * y1
    return a, x0, y0

def modinv(a, m):
    g, x, y = xgcd(a, m)
    if g != 1:
        raise Exception('modular inverse does not exist')
    else:
        return x % m
gt=modinv(K,mod)

for i in range(N):
  ans*=gt 
  ans%=mod 
print(ans)
0