結果

問題 No.2467 Sum of Product of Binomial Coefficients
ユーザー lloyzlloyz
提出日時 2023-10-03 00:08:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,364 KB
最終ジャッジ日時 2024-07-26 13:57:06
合計ジャッジ時間 2,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,156 KB
testcase_01 AC 166 ms
60,116 KB
testcase_02 AC 190 ms
59,296 KB
testcase_03 AC 184 ms
60,420 KB
testcase_04 AC 183 ms
60,140 KB
testcase_05 AC 212 ms
76,364 KB
testcase_06 AC 118 ms
69,060 KB
testcase_07 AC 50 ms
64,104 KB
testcase_08 AC 148 ms
62,936 KB
testcase_09 AC 180 ms
74,500 KB
testcase_10 AC 75 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 998244353
for _ in range(int(input())):
    n, k = map(int, input().split())
    ans = 0
    for i in range(k):
        ans += pow(i + 2, n, mod)
        ans %= mod
    print(ans)
0