結果

問題 No.2467 Sum of Product of Binomial Coefficients
ユーザー 👑 rin204rin204
提出日時 2023-09-06 23:36:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-29 13:48:20
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,112 KB
testcase_01 AC 141 ms
57,728 KB
testcase_02 AC 159 ms
57,472 KB
testcase_03 AC 154 ms
57,472 KB
testcase_04 AC 162 ms
58,368 KB
testcase_05 AC 400 ms
76,544 KB
testcase_06 AC 160 ms
76,816 KB
testcase_07 AC 83 ms
76,484 KB
testcase_08 AC 144 ms
62,080 KB
testcase_09 AC 230 ms
77,056 KB
testcase_10 AC 66 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353


def solve(n, k):
    ans = 0
    for i in range(1, k + 1):
        ans += pow(i + 1, n, MOD)
        ans %= MOD
    return ans


T = int(input())
assert 1 <= T <= 10**5
ktot = 0

for _ in range(T):
    n, k = map(int, input().split())
    assert 0 <= n <= 10**9
    assert 1 <= k <= 200000
    ktot += k
    print(solve(n, k))

assert ktot <= 200000
0