結果

問題 No.2467 Sum of Product of Binomial Coefficients
ユーザー hiro1729hiro1729
提出日時 2023-09-18 08:15:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 77,200 KB
最終ジャッジ日時 2024-07-05 00:15:08
合計ジャッジ時間 3,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,904 KB
testcase_01 AC 184 ms
62,464 KB
testcase_02 AC 208 ms
62,592 KB
testcase_03 AC 198 ms
62,336 KB
testcase_04 AC 200 ms
70,272 KB
testcase_05 AC 448 ms
77,200 KB
testcase_06 AC 191 ms
77,064 KB
testcase_07 AC 104 ms
76,660 KB
testcase_08 AC 181 ms
75,304 KB
testcase_09 AC 281 ms
77,184 KB
testcase_10 AC 79 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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