結果

問題 No.2934 Digit Sum
ユーザー 👑 rin204rin204
提出日時 2024-10-13 16:17:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 734 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,732 KB
最終ジャッジ日時 2024-10-13 16:17:33
合計ジャッジ時間 4,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 49 ms
59,392 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 44 ms
58,624 KB
testcase_08 AC 43 ms
58,112 KB
testcase_09 AC 959 ms
88,840 KB
testcase_10 AC 948 ms
89,732 KB
testcase_11 AC 92 ms
77,000 KB
testcase_12 AC 46 ms
59,648 KB
testcase_13 AC 45 ms
59,648 KB
testcase_14 AC 46 ms
60,032 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 46 ms
59,904 KB
testcase_18 AC 45 ms
59,520 KB
testcase_19 AC 44 ms
58,880 KB
testcase_20 AC 45 ms
60,160 KB
testcase_21 AC 48 ms
60,928 KB
testcase_22 AC 53 ms
64,256 KB
testcase_23 AC 62 ms
72,320 KB
testcase_24 AC 57 ms
66,816 KB
testcase_25 AC 56 ms
65,792 KB
testcase_26 AC 53 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.set_int_max_str_digits(10**7)

n, K = map(int, input().split())

if K == 1:
    print(1)
    exit()

now = [1]
dp = [now]
while sum(now) <= K:
    le = len(now)
    nex = [0] * (le + 9)
    for i in range(le):
        for j in range(10):
            nex[i + j] += now[i]

    now = nex[:]
    if len(now) > n + 1:
        now = now[: n + 1]

    dp.append(now)

le = len(dp)
ma = len(dp[-1])
for i in range(le):
    dp[i] += [0] * (ma - len(dp[i]))
    for j in range(len(dp[i]) - 1):
        dp[i][j + 1] += dp[i][j]

ans = 0
for i in range(le - 2, -1, -1):
    for j in range(10):
        if dp[i][n - j] > K:
            ans = 10 * ans + j
            n -= j
            break
        K -= dp[i][n - j]

print(ans)
0