题解 | #数位dp?#

数位dp?

https://ac.nowcoder.com/acm/contest/66877/A


using namespace std;
int main(){
    int n;
    int count = 0;
    int first_bit = 0;
    int judge = 0;
    cin>>n;
    int tep1 = n;
    while (tep1>0){         //取它是几位数
        first_bit++;
        tep1 /=10;
    }
    tep1 = n;

    for(int i=0;i<first_bit;i++){          //删除最后一位奇数
        if(tep1%2!=0){
            count++;
        } else {
            break;
        }
        tep1 /=10;
    }
    tep1 = n;

   for(int i=0;i<first_bit-1;i++){             //取第一位数
       tep1 /=10;
   }
   judge = tep1;

   if(judge==0){
       count++;
   }



    if(judge!=0&&n%2==0){               //判断
        cout<<"0";
    }
    else{
        cout<<count;
    }









    return 0;

}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 15:46
已编辑
字节国际 电商后端 24k-35k
点赞 评论 收藏
分享
qz鹿:*** 祝他毕业就失业
点赞 评论 收藏
分享
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
评论
4
收藏
分享
牛客网
牛客企业服务