結果

問題 No.2865 Base 10 Subsets 2
ユーザー tkykwtnbtkykwtnb
提出日時 2024-08-30 22:09:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-08-30 22:09:47
合計ジャッジ時間 1,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,464 KB
testcase_01 AC 36 ms
53,392 KB
testcase_02 AC 35 ms
53,232 KB
testcase_03 AC 36 ms
52,532 KB
testcase_04 AC 36 ms
52,192 KB
testcase_05 AC 36 ms
53,268 KB
testcase_06 WA -
testcase_07 AC 37 ms
53,332 KB
testcase_08 WA -
testcase_09 AC 37 ms
53,444 KB
testcase_10 AC 36 ms
53,240 KB
testcase_11 AC 37 ms
52,864 KB
testcase_12 AC 36 ms
53,288 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

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%=cnt_in_k[k+1]
    else:
        ans[k]=K-1
        K=0
print(int("".join(map(str,ans))))
0