結果

問題 No.2865 Base 10 Subsets 2
ユーザー tkykwtnbtkykwtnb
提出日時 2024-08-30 22:25:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-08-30 22:25:18
合計ジャッジ時間 1,651 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,484 KB
testcase_01 AC 37 ms
52,644 KB
testcase_02 AC 38 ms
53,100 KB
testcase_03 AC 37 ms
52,128 KB
testcase_04 AC 37 ms
53,420 KB
testcase_05 AC 37 ms
53,380 KB
testcase_06 AC 37 ms
52,680 KB
testcase_07 AC 38 ms
54,116 KB
testcase_08 AC 37 ms
53,352 KB
testcase_09 AC 37 ms
52,620 KB
testcase_10 AC 37 ms
53,016 KB
testcase_11 AC 37 ms
52,436 KB
testcase_12 AC 37 ms
53,040 KB
testcase_13 AC 36 ms
53,500 KB
testcase_14 AC 37 ms
53,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=input().split()
N=list(map(int,list(N)))
K=int(K)
cnt_in_k=[0 for _ in range(len(N))]
cnt_in_k[-1]=N[-1]+1
for i in range(len(N)-2,-1,-1):
    cnt_in_k[i]=(N[i]+1)*cnt_in_k[i+1]
ans=[0 for _ in range(len(N))]
while K:
    k=-1
    while cnt_in_k[k]<K:
        k-=1
    if k<-1:
        ans[k]=(K-1)//cnt_in_k[k+1]
        K=K-ans[k]*cnt_in_k[k+1]
    else:
        ans[k]=K-1
        K=0
print(int("".join(map(str,ans))))
0