結果

問題 No.2467 Sum of Product of Binomial Coefficients
ユーザー rlangevinrlangevin
提出日時 2023-10-12 00:36:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-09-14 00:29:59
合計ジャッジ時間 2,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,232 KB
testcase_01 AC 180 ms
59,804 KB
testcase_02 AC 204 ms
60,052 KB
testcase_03 AC 196 ms
59,568 KB
testcase_04 AC 194 ms
60,332 KB
testcase_05 AC 217 ms
76,160 KB
testcase_06 AC 127 ms
68,688 KB
testcase_07 AC 56 ms
64,332 KB
testcase_08 AC 161 ms
61,648 KB
testcase_09 AC 197 ms
74,568 KB
testcase_10 AC 77 ms
58,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T = int(input())
mod = 998244353
for _ in range(T):
    N, K = map(int, input().split())
    ans = 0
    for k in range(1, K + 1):
        ans += pow(k+1, N, mod)
        ans %= mod
    print(ans)
0