結果

問題 No.2934 Digit Sum
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-11 16:22:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 342,528 KB
最終ジャッジ日時 2024-10-12 07:58:09
合計ジャッジ時間 6,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
93,840 KB
testcase_01 AC 1,705 ms
342,528 KB
testcase_02 AC 131 ms
93,248 KB
testcase_03 AC 186 ms
95,728 KB
testcase_04 AC 274 ms
99,368 KB
testcase_05 AC 293 ms
99,408 KB
testcase_06 AC 290 ms
99,544 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 118 ms
98,564 KB
testcase_10 AC 137 ms
99,440 KB
testcase_11 AC 189 ms
95,544 KB
testcase_12 WA -
testcase_13 AC 35 ms
54,088 KB
testcase_14 AC 35 ms
52,372 KB
testcase_15 AC 36 ms
53,448 KB
testcase_16 AC 35 ms
52,544 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 740 ms
191,124 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 302 ms
99,720 KB
testcase_23 AC 208 ms
96,364 KB
testcase_24 AC 231 ms
97,448 KB
testcase_25 AC 252 ms
98,104 KB
testcase_26 AC 262 ms
98,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
if N>=40:
	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