CF431D.Random Task
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
One day, after a difficult lecture a diligent student Sasha saw a graffitied desk in the classroom. She came closer and read: "Find such positive integer n , that among numbers n+1 , n+2 , ..., 2⋅n there are exactly m numbers which binary representation contains exactly k digits one".
The girl got interested in the task and she asked you to help her solve it. Sasha knows that you are afraid of large numbers, so she guaranteed that there is an answer that doesn't exceed 1018 .
输入格式
The first line contains two space-separated integers, m and k ( 0<=m<=1018 ; 1<=k<=64 ).
输出格式
Print the required number n ( 1<=n<=1018 ). If there are multiple answers, print any of them.
输入输出样例
输入#1
1 1
输出#1
1
输入#2
3 2
输出#2
5