結果

問題 No.2467 Sum of Product of Binomial Coefficients
ユーザー ntudantuda
提出日時 2023-09-23 10:39:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 76,132 KB
最終ジャッジ日時 2024-07-16 10:10:30
合計ジャッジ時間 2,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,476 KB
testcase_01 AC 168 ms
59,900 KB
testcase_02 AC 191 ms
60,032 KB
testcase_03 AC 182 ms
59,488 KB
testcase_04 AC 176 ms
61,684 KB
testcase_05 AC 368 ms
76,132 KB
testcase_06 AC 137 ms
73,236 KB
testcase_07 AC 61 ms
67,000 KB
testcase_08 AC 151 ms
64,856 KB
testcase_09 AC 220 ms
76,128 KB
testcase_10 AC 69 ms
58,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0