結果

問題 No.2934 Digit Sum
ユーザー Pedro ViniciusPedro Vinicius
提出日時 2024-10-23 12:54:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 957 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 100,080 KB
最終ジャッジ日時 2024-10-23 12:54:11
合計ジャッジ時間 5,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,256 KB
testcase_01 AC 744 ms
83,644 KB
testcase_02 AC 64 ms
70,052 KB
testcase_03 AC 62 ms
67,576 KB
testcase_04 AC 79 ms
76,852 KB
testcase_05 AC 81 ms
76,928 KB
testcase_06 AC 85 ms
76,836 KB
testcase_07 AC 109 ms
78,004 KB
testcase_08 AC 111 ms
77,224 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