結果

問題 No.2865 Base 10 Subsets 2
ユーザー detteiuudetteiuu
提出日時 2024-08-30 21:45:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 53,884 KB
最終ジャッジ日時 2024-08-30 21:45:10
合計ジャッジ時間 1,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,012 KB
testcase_01 AC 37 ms
52,728 KB
testcase_02 AC 37 ms
52,488 KB
testcase_03 AC 36 ms
53,204 KB
testcase_04 AC 37 ms
52,952 KB
testcase_05 AC 36 ms
52,212 KB
testcase_06 AC 36 ms
52,132 KB
testcase_07 AC 37 ms
52,544 KB
testcase_08 AC 39 ms
52,800 KB
testcase_09 AC 36 ms
52,216 KB
testcase_10 AC 37 ms
53,128 KB
testcase_11 AC 38 ms
52,344 KB
testcase_12 AC 37 ms
52,420 KB
testcase_13 AC 38 ms
53,380 KB
testcase_14 AC 39 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

digit = -1
SUM = 1
for i in reversed(range(len(N))):
    SUM *= int(N[i])+1
    if  SUM > K:
        digit = len(N)-i-1
        break
    if SUM == K:
        digit = len(N)-i
        break

K -= 1
SUM = 1
for i in range(len(N)):
    SUM *= int(N[i])+1

ans = []
for i in range(len(N)):
    SUM //= int(N[i])+1
    ans.append(str(K//SUM))
    K %= SUM

print(int("".join(ans)))
0