結果

問題 No.2934 Digit Sum
ユーザー Pedro ViniciusPedro Vinicius
提出日時 2024-10-23 12:54:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 957 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-10-23 12:54:48
合計ジャッジ時間 5,374 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
17,696 KB
testcase_01 AC 686 ms
11,008 KB
testcase_02 AC 35 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 34 ms
10,624 KB
testcase_05 AC 35 ms
10,624 KB
testcase_06 AC 36 ms
10,880 KB
testcase_07 AC 45 ms
10,624 KB
testcase_08 AC 52 ms
10,752 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
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 #

import sys
from functools import lru_cache

sys.setrecursionlimit(2000)

def num2v(n):
    retval = []
    if n == 0:
        retval.append(0)
    while n > 0:
        retval.append(n % 10)
        n //= 10
    retval.reverse()
    return retval

@lru_cache(None)
def dp(digits, i=0, empatado=True, x=0):
    if i == len(digits):
        return 1
    ans = 0
    r = digits[i] if empatado else 9
    for val in range(r + 1):
        new_empatado = empatado and val == r
        if x + val <= n:
            ans += dp(tuple(digits), i + 1, new_empatado, x + val)
    return ans

def good(x):
    digits = num2v(x)
    dp.cache_clear()
    return dp(tuple(digits)) >= k

def solve(l, r):
    while r - l > 1:
        mid = l + (r - l) // 2
        if good(mid):
            r = mid
        else:
            l = mid
    return r

n, k = map(int, input().split())
k += 1
n = min(n, 400)

l, r = 0, 1
while not good(r):
    r *= 2
ans = solve(l, r)
print(ans)

0