結果

問題 No.2934 Digit Sum
ユーザー むつあるむつある
提出日時 2024-12-04 05:25:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 138,496 KB
最終ジャッジ日時 2024-12-04 05:25:53
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 59 ms
63,488 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 52 ms
60,032 KB
testcase_08 AC 63 ms
61,568 KB
testcase_09 AC 248 ms
122,368 KB
testcase_10 AC 301 ms
138,496 KB
testcase_11 AC 111 ms
84,992 KB
testcase_12 AC 64 ms
66,816 KB
testcase_13 AC 65 ms
66,560 KB
testcase_14 AC 41 ms
51,584 KB
testcase_15 AC 42 ms
51,840 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 63 ms
65,536 KB
testcase_18 AC 59 ms
64,000 KB
testcase_19 AC 56 ms
62,848 KB
testcase_20 AC 64 ms
65,792 KB
testcase_21 AC 59 ms
64,768 KB
testcase_22 AC 71 ms
68,992 KB
testcase_23 AC 88 ms
77,824 KB
testcase_24 AC 84 ms
77,568 KB
testcase_25 AC 73 ms
71,936 KB
testcase_26 AC 75 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
if n>9*18:
  print(k)
  exit()
  
k+=1
dp=[[[0]*10 for _ in range(n+1)]]
dp[0][0][0]=1
  
while True:
  now=[[0]*10 for _ in range(n+1)]
  p=0
  for i in range(n+1):
    s=sum(dp[-1][i])
    for j in range(10):
      if i+j<=n:
        now[i+j][j]+=s
        p+=s
  dp.append(now)
  if p>=k:
    break
  
ans=[]
ma=n
while dp:
  now=dp.pop()
  for i in range(10):
    p=0
    for j in range(ma+1):
      p+=now[j][i]
    if k>p:
      k-=p
    else:
      ma-=i
      ans.append(str(i))
      break
    
ans.pop()
print(''.join(ans))
0