結果

問題 No.2058 Binary String
ユーザー dachengzdachengz
提出日時 2022-11-16 08:51:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-17 06:37:52
合計ジャッジ時間 3,354 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 79 ms
77,056 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 37 ms
51,328 KB
testcase_06 AC 51 ms
61,952 KB
testcase_07 AC 141 ms
76,800 KB
testcase_08 AC 60 ms
66,176 KB
testcase_09 AC 160 ms
77,056 KB
testcase_10 AC 84 ms
73,856 KB
testcase_11 AC 64 ms
68,224 KB
testcase_12 AC 102 ms
76,232 KB
testcase_13 AC 90 ms
76,288 KB
testcase_14 AC 76 ms
70,784 KB
testcase_15 AC 73 ms
70,528 KB
testcase_16 AC 71 ms
72,448 KB
testcase_17 AC 85 ms
75,904 KB
testcase_18 AC 45 ms
60,800 KB
testcase_19 AC 153 ms
76,952 KB
testcase_20 AC 137 ms
76,672 KB
testcase_21 AC 149 ms
77,056 KB
testcase_22 AC 143 ms
76,928 KB
testcase_23 AC 157 ms
77,184 KB
testcase_24 AC 153 ms
77,092 KB
testcase_25 AC 173 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

mod = 998244353
inv = [1] * (N + 1)
for i in range(2, N + 1):
    inv[i] = mod - mod // i * inv[mod % i] % mod

ans = 0
c = 1
for i in range(N):
    ans += c * pow(i, K, mod)
    c = c * (N - i - 1) * inv[i + 1] % mod
ans %= mod
print(ans)
0