結果

問題 No.2865 Base 10 Subsets 2
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2024-08-30 23:03:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 53,828 KB
最終ジャッジ日時 2024-08-30 23:03:45
合計ジャッジ時間 1,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,068 KB
testcase_01 AC 35 ms
53,496 KB
testcase_02 AC 36 ms
52,688 KB
testcase_03 AC 37 ms
52,068 KB
testcase_04 AC 37 ms
52,124 KB
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 = map(int,input().split())
K -= 1

Nlis = list(str(N))
Nlis.reverse()

ans = []

dig = 1
for c in Nlis:
    dig *= int(c)+1
    ans.append( K % dig )
    K //= dig
ans.reverse()
print (int( "".join(map(str,ans)) ))


0