結果

問題 No.2934 Digit Sum
ユーザー 👑 rin204rin204
提出日時 2024-10-13 16:18:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,252 KB
最終ジャッジ日時 2024-10-13 16:18:57
合計ジャッジ時間 4,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 45 ms
59,136 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 39 ms
51,456 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 51 ms
59,008 KB
testcase_08 AC 44 ms
58,496 KB
testcase_09 AC 816 ms
89,824 KB
testcase_10 AC 864 ms
90,252 KB
testcase_11 AC 93 ms
77,312 KB
testcase_12 AC 46 ms
59,904 KB
testcase_13 AC 47 ms
60,032 KB
testcase_14 AC 48 ms
59,520 KB
testcase_15 AC 46 ms
59,648 KB
testcase_16 AC 45 ms
59,904 KB
testcase_17 AC 52 ms
59,392 KB
testcase_18 AC 46 ms
59,264 KB
testcase_19 AC 45 ms
59,008 KB
testcase_20 AC 48 ms
59,648 KB
testcase_21 AC 50 ms
61,184 KB
testcase_22 AC 58 ms
63,744 KB
testcase_23 AC 71 ms
72,320 KB
testcase_24 AC 64 ms
66,560 KB
testcase_25 AC 61 ms
65,536 KB
testcase_26 AC 58 ms
64,128 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]

n = len(dp[-2]) - 1
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