結果

問題 No.2865 Base 10 Subsets 2
ユーザー PNJPNJ
提出日時 2024-09-03 02:07:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 53,692 KB
最終ジャッジ日時 2024-09-03 02:07:10
合計ジャッジ時間 1,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,420 KB
testcase_01 AC 38 ms
53,476 KB
testcase_02 AC 39 ms
52,824 KB
testcase_03 AC 36 ms
52,988 KB
testcase_04 AC 39 ms
53,556 KB
testcase_05 AC 38 ms
53,192 KB
testcase_06 AC 37 ms
52,572 KB
testcase_07 AC 38 ms
51,820 KB
testcase_08 AC 38 ms
53,468 KB
testcase_09 AC 38 ms
51,880 KB
testcase_10 AC 38 ms
52,836 KB
testcase_11 AC 38 ms
53,692 KB
testcase_12 AC 39 ms
52,340 KB
testcase_13 AC 38 ms
52,796 KB
testcase_14 AC 38 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(str,input().split())
K = int(K)
C = []
for i in range(len(N)):
  C.append(int(N[i]))

K -= 1
ans = []
for i in range(len(N)):
  res = 1
  for j in range(i + 1,len(N)):
    res *= C[j] + 1
  k = K // res
  ans.append(str(k))
  K %= res
print(int(''.join(ans)))
0