結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,724 KB
testcase_01 AC 35 ms
52,620 KB
testcase_02 AC 35 ms
53,508 KB
testcase_03 AC 35 ms
52,432 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
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//cnt_in_k[k+1])-1
        K%=cnt_in_k[k+1]
    else:
        ans[k]=K-1
        K=0
print(int("".join(map(str,ans))))
0