結果
問題 | No.2934 Digit Sum |
ユーザー | Pedro Vinicius |
提出日時 | 2024-10-23 12:55:21 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 957 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 82,556 KB |
実行使用メモリ | 99,904 KB |
最終ジャッジ日時 | 2024-10-23 12:55:27 |
合計ジャッジ時間 | 5,705 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
63,604 KB |
testcase_01 | AC | 735 ms
83,672 KB |
testcase_02 | AC | 64 ms
69,436 KB |
testcase_03 | AC | 61 ms
68,080 KB |
testcase_04 | AC | 81 ms
77,212 KB |
testcase_05 | AC | 83 ms
76,800 KB |
testcase_06 | AC | 86 ms
77,288 KB |
testcase_07 | AC | 108 ms
77,416 KB |
testcase_08 | AC | 112 ms
77,792 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 | -- | - |
ソースコード
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, 100) l, r = 0, 1 while not good(r): r *= 2 ans = solve(l, r) print(ans)