結果

問題 No.2865 Base 10 Subsets 2
ユーザー loop0919loop0919
提出日時 2024-08-30 21:59:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 53,480 KB
最終ジャッジ日時 2024-08-30 21:59:37
合計ジャッジ時間 1,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,580 KB
testcase_01 AC 34 ms
53,084 KB
testcase_02 AC 36 ms
52,824 KB
testcase_03 AC 36 ms
52,192 KB
testcase_04 AC 35 ms
52,340 KB
testcase_05 AC 36 ms
53,280 KB
testcase_06 AC 35 ms
52,240 KB
testcase_07 AC 36 ms
52,576 KB
testcase_08 AC 35 ms
52,400 KB
testcase_09 AC 34 ms
53,480 KB
testcase_10 AC 37 ms
53,080 KB
testcase_11 AC 36 ms
52,196 KB
testcase_12 AC 37 ms
52,344 KB
testcase_13 AC 36 ms
52,832 KB
testcase_14 AC 36 ms
52,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N_str = str(N)

val = [1]
now = 1

for i in range(len(N_str) - 1, 0, -1):
    now *= int(N_str[i]) + 1
    val.append(now)

ans = ""
x = 0
for i in range(len(N_str)):
    v = 0
    for j in range(int(N_str[i]) + 1):
        if j * val[~i] + x > K - 1:
            v = j - 1
            break
    else:
        v = int(N_str[i])

    x += val[~i] * v
    ans += str(v)

print(0 if ans.lstrip("0") == "" else ans.lstrip("0"))
0