zoukankan      html  css  js  c++  java
  • 17 多校1 Add More Zero 水题

    Problem Description
    There is a youngster known for amateur propositions concerning several mathematical hard problems.

    Nowadays, he is preparing a thought-provoking problem on a specific type of supercomputer which has ability to support calculations of integers between 0 and (2m1) (inclusive).

    As a young man born with ten fingers, he loves the powers of 10 so much, which results in his eccentricity that he always ranges integers he would like to use from 1 to 10k (inclusive).

    For the sake of processing, all integers he would use possibly in this interesting problem ought to be as computable as this supercomputer could.

    Given the positive integer m, your task is to determine maximum possible integer k that is suitable for the specific supercomputer.
     
    Input
    The input contains multiple test cases. Each test case in one line contains only one positive integer m, satisfying 1m105.
     
    Output
    For each test case, output "Case #xy" in one line (without quotes), where x indicates the case number starting from 1 and y denotes the answer of corresponding case.
     
    Sample Input
    1
    64
     
    Sample Output
    Case #1: 0
    Case #2: 19
     
    题意:给你m,得到一个数(2^m-1),问这个数最多有10的几次
    题解:简单粗暴地记录log10(2),再拿m去除以它,经验算得符合结果
     
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<queue>
     4 #include<vector>
     5 #include<cstring>
     6 #include<string>
     7 #include<algorithm>
     8 #include<map>
     9 #include<cmath>
    10 #include<math.h>
    11 using namespace std;
    12 
    13 const double p=log(10.0)/log(2.0);
    14 
    15 int main()
    16 {
    17     int t=1,m;
    18     while(~scanf("%d",&m))
    19     {
    20         printf("Case #%d: %d
    ",t++,int(m/p));
    21     }
    22     return 0;
    23 }
  • 相关阅读:
    wget一个小技巧
    【iOS官方文档翻译】UICollectionView与UICollectionViewFlowLayout
    NSDate获取当前时区的时间
    怎样把一个字典的数据添加到另一个字典中?
    CoreLocation基本使用
    iOS开发--一步步教你彻底学会『iOS应用间相互跳转』
    Save Image to UserDefaults(用NSUserDefaults保存图片)
    SDWebImage源码解析
    获取cell或者cell中的控件在屏幕中的位置
    Git命令详解 123
  • 原文地址:https://www.cnblogs.com/Annetree/p/7238019.html
Copyright © 2011-2022 走看看