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 nn , that among numbers n+1n+1 , n+2n+2 , ..., 2n2·n there are exactly mm numbers which binary representation contains exactly kk 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 101810^{18} .

输入格式

The first line contains two space-separated integers, mm and kk ( 0<=m<=10180<=m<=10^{18} ; 1<=k<=641<=k<=64 ).

输出格式

Print the required number nn ( 1<=n<=10181<=n<=10^{18} ). If there are multiple answers, print any of them.

输入输出样例

  • 输入#1

    1 1
    

    输出#1

    1
    
  • 输入#2

    3 2
    

    输出#2

    5
    
首页