結果

問題 No.2467 Sum of Product of Binomial Coefficients
ユーザー ShirotsumeShirotsume
提出日時 2023-09-20 13:40:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 76,296 KB
最終ジャッジ日時 2024-07-06 08:57:11
合計ジャッジ時間 3,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,112 KB
testcase_01 AC 150 ms
57,728 KB
testcase_02 AC 163 ms
57,600 KB
testcase_03 AC 166 ms
57,856 KB
testcase_04 AC 172 ms
58,368 KB
testcase_05 AC 373 ms
76,216 KB
testcase_06 AC 152 ms
76,296 KB
testcase_07 AC 74 ms
74,112 KB
testcase_08 AC 147 ms
62,208 KB
testcase_09 AC 231 ms
76,160 KB
testcase_10 AC 67 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    mod = 998244353
    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)
    

for _ in range(int(input())):
    solve()
0