結果

問題 No.2865 Base 10 Subsets 2
ユーザー 👑 rin204rin204
提出日時 2024-08-30 23:23:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 53,312 KB
最終ジャッジ日時 2024-08-30 23:23:15
合計ジャッジ時間 1,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
53,012 KB
testcase_02 AC 35 ms
52,196 KB
testcase_03 AC 33 ms
52,848 KB
testcase_04 AC 35 ms
53,312 KB
testcase_05 AC 33 ms
52,684 KB
testcase_06 AC 34 ms
52,616 KB
testcase_07 AC 34 ms
53,076 KB
testcase_08 AC 33 ms
52,760 KB
testcase_09 AC 34 ms
52,980 KB
testcase_10 AC 34 ms
53,004 KB
testcase_11 AC 34 ms
52,276 KB
testcase_12 AC 34 ms
52,976 KB
testcase_13 AC 33 ms
52,028 KB
testcase_14 AC 34 ms
53,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
k -= 1

A = list(map(int, str(n)))
prod = [1]
for a in A[::-1]:
    prod.append(prod[-1] * (a + 1))
prod = prod[::-1]

ans = ""
for i in range(1, len(prod)):
    t = k // prod[i]
    ans += str(t)
    k %= prod[i]

print(int(ans))
0