結果

問題 No.2934 Digit Sum
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-11 16:23:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 504 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 393,340 KB
最終ジャッジ日時 2024-10-12 07:58:19
合計ジャッジ時間 9,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
100,444 KB
testcase_01 AC 1,781 ms
342,660 KB
testcase_02 AC 134 ms
93,508 KB
testcase_03 AC 186 ms
95,644 KB
testcase_04 AC 277 ms
99,248 KB
testcase_05 AC 291 ms
99,388 KB
testcase_06 AC 293 ms
99,280 KB
testcase_07 AC 874 ms
124,344 KB
testcase_08 AC 1,035 ms
132,256 KB
testcase_09 AC 125 ms
98,584 KB
testcase_10 AC 142 ms
99,360 KB
testcase_11 AC 193 ms
95,280 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
if N>=200:
	print(K)
	exit()
K+=1
dp=[[0]*(N+10) for i in range(100001)]
dp[0][0]=1
for i in range(100000):
	for j in range(N+1):
		dp[i][j]=min(dp[i][j],K+1)
		for k in range(10):
			dp[i+1][j+k]+=dp[i][j]
ans=[]
cnt=0
sm=0
for i in range(100000,-1,-1):
	for j in range(N):
		dp[i][j+1]+=dp[i][j]
	for j in range(min(10,N-sm+1)):
		if K<=cnt+dp[i][N-sm-j]:
			if len(ans)!=0 or j!=0:
				ans.append(str(j))
			sm+=j
			break
		else:
			cnt+=dp[i][N-sm-j]
print("".join(ans))
0