zoukankan      html  css  js  c++  java
  • HDU 6033 Add More Zero (数学)

    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 00 and (2m1)(2m−1) (inclusive). 

    As a young man born with ten fingers, he loves the powers of 1010 so much, which results in his eccentricity that he always ranges integers he would like to use from 11 to 10k10k (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 mm, satisfying 1m1051≤m≤105.
     

    Output

    For each test case, output " Case #xx: yy" in one line (without quotes), where xx indicates the case number starting from 11 and yy denotes the answer of corresponding case.
     
    Sample
    Sample Input
    1
    64 
     
    Sample Output
    Case #1: 0
    Case #2: 19 

    题意:

      给出10^k ≥ 2^m -1,求k的最大整数

    思路:

      令10^k = 2^m 两边取对数,得 k = m*log10(2)的整数部分。

    代码

    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #include<queue>
    #include<math.h>
    using namespace std;
    int main()
    {
        int flag = 1,n;
        while(scanf("%d",&n)!=EOF)
        {
            int ans= (n*log10(2));
            printf("Case #%d: %d
    ",flag++,ans);
        }
        return 0;
    }
  • 相关阅读:
    使用可跨平台的函数执行命令
    linux查看及修改文件权限以及相关
    php 文件缓存类
    秒杀抢购思路以及高并发下数据安全
    php 无限分类
    isset ,empty,is_null 区别
    phpstorm 在线激活码
    phpstorm 不能提示代码tp 3.2 $this->display等 解决办法
    laravel-ide-helper 遇到There are no commands defined问题怎么解决
    NFS共享服务
  • 原文地址:https://www.cnblogs.com/aiguona/p/7260220.html
Copyright © 2011-2022 走看看