結果

問題 No.2467 Sum of Product of Binomial Coefficients
ユーザー 遭難者遭難者
提出日時 2023-09-19 01:11:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-05 14:04:22
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
58,752 KB
testcase_01 AC 177 ms
58,496 KB
testcase_02 AC 205 ms
58,368 KB
testcase_03 AC 196 ms
58,496 KB
testcase_04 AC 193 ms
59,136 KB
testcase_05 AC 429 ms
76,288 KB
testcase_06 AC 155 ms
71,936 KB
testcase_07 AC 71 ms
66,048 KB
testcase_08 AC 170 ms
63,488 KB
testcase_09 AC 245 ms
76,288 KB
testcase_10 AC 77 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
	print(ans % MOD)
0