码迷,mamicode.com
首页 > 其他好文 > 详细

Educational Codeforces Round 80 (Rated for Div. 2)(BYet Another Meme Problem)

时间:2020-01-15 10:18:52      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:span   clu   ted   text   int   while   force   using   namespace   

(B)Yet Another Meme Problem

 

题目

 

技术图片

 

 

思路:找b中9,99,999,999.。。。比b小的这些个数,然后相乘就行。。。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    //freopen("text","r",stdin);
    int T;
    scanf("%d",&T);
    while(T--)
    {
        long long a,b;
        cin>>a>>b;
        if(b<9)
            printf("0\n");
        else{
            if(b<99)
                cout<<a<<endl;
            else if(b<999)
                cout<<a*2<<endl;
            else if(b<9999)
                cout<<a*3<<endl;
            else if(b<99999)
                cout<<a*4<<endl;
            else if(b<999999)
                cout<<a*5<<endl;
            else if(b<9999999)
                cout<<a*6<<endl;
            else if(b<99999999)
                cout<<a*7<<endl;
            else if(b<999999999)
                cout<<a*8<<endl;
            else
                cout<<a*9<<endl;
        }
 
    }
    return 0;
}

Educational Codeforces Round 80 (Rated for Div. 2)(BYet Another Meme Problem)

标签:span   clu   ted   text   int   while   force   using   namespace   

原文地址:https://www.cnblogs.com/Vampire6/p/12194763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!