結果

問題 No.2058 Binary String
ユーザー ytftytft
提出日時 2022-09-01 19:58:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 294 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 151,988 KB
最終ジャッジ日時 2024-11-14 11:09:02
合計ジャッジ時間 56,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,908 KB
testcase_01 AC 36 ms
128,776 KB
testcase_02 TLE -
testcase_03 AC 36 ms
128,260 KB
testcase_04 AC 36 ms
59,428 KB
testcase_05 AC 37 ms
128,508 KB
testcase_06 AC 151 ms
82,228 KB
testcase_07 TLE -
testcase_08 AC 1,079 ms
82,824 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 83 ms
82,636 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
mod=998244353
N,K=map(int,input().split())
def p(a,b):
	temp=a
	ans=1
	while b>0:
		if b%2:
			ans=(ans*temp)%mod
		b//=2
		temp=(temp*temp)%mod
	return ans
C=1
ans=0
for l in range(N):
	ans=(ans+C*p(l,K))%mod
	C=C*(N-1-l)//(l+1)
print(ans)
0