結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 52 ms
64,000 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 46 ms
60,416 KB
testcase_08 AC 50 ms
61,568 KB
testcase_09 AC 188 ms
122,752 KB
testcase_10 AC 279 ms
138,496 KB
testcase_11 AC 96 ms
84,864 KB
testcase_12 WA -
testcase_13 AC 40 ms
51,840 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 59 ms
65,920 KB
testcase_18 AC 55 ms
64,384 KB
testcase_19 AC 52 ms
62,720 KB
testcase_20 AC 54 ms
65,920 KB
testcase_21 AC 52 ms
64,640 KB
testcase_22 AC 61 ms
68,992 KB
testcase_23 AC 74 ms
77,896 KB
testcase_24 AC 69 ms
77,652 KB
testcase_25 AC 66 ms
71,936 KB
testcase_26 AC 68 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
if n>9*17:
  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