• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
HaibaraAi
博客园    首页    新随笔    联系   管理    订阅  订阅

2013 Asia Chengdu Regional Contest H

Hard Disk Drive

Time Limit: 2000/1000 MS (Java/Others)    

Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 0    Accepted Submission(s): 0

Problem Description
Yesterday your dear cousin Coach Pang gave you a new 100MB hard disk drive (HDD) as a gift because you will get married next year. But you turned on your computer and the operating system (OS) told you the HDD is about 95MB. The 5MB of space is missing. It is known that the HDD manufacturers have a different capacity measurement. The manufacturers think 1 “kilo” is 1000 but the OS thinks that is 1024. There are several descriptions of the size of an HDD. They are byte, kilobyte, megabyte, gigabyte, terabyte, petabyte, exabyte, zetabyte and yottabyte. Each one equals a “kilo” of the previous one. For example 1 gigabyte is 1 “kilo” megabytes. Now you know the size of a hard disk represented by manufacturers and you want to calculate the percentage of the “missing part”.
 
Input
The first line contains an integer T, which indicates the number of test cases. For each test case, there is one line contains a string in format “number[unit]” where number is a positive integer within [1, 1000] and unit is the description of size which could be “B”, “KB”, “MB”, “GB”, “TB”, “PB”, “EB”, “ZB”, “YB” in short respectively.
 
Output
For each test case, output one line “Case #x: y”, where x is the case number (starting from 1) and y is the percentage of the “missing part”. The answer should be rounded to two digits after the decimal point.
 
Sample Input
2
100[MB]
1[B]
 
Sample Output
Case #1: 4.63%
Case #2: 0.00%
Hint
 1 #include <cstdio>
 2 #include <cmath>
 3 #include <cstring>
 4 #include <algorithm>
 5 using namespace std;
 6 #define maxn 5005
 7 char s[maxn];
 8 int n, m;
 9 int judge(char *s,int x){
10     if (s[n - 3] != '[')x++; else return x;
11     if (s[n - 3] != 'K')x++; else return x;
12     if (s[n - 3] != 'M')x++; else return x;
13     if (s[n - 3] != 'G')x++; else return x;
14     if (s[n - 3] != 'T')x++; else return x;
15     if (s[n - 3] != 'P')x++; else return x;
16     if (s[n - 3] != 'E')x++; else return x;
17     if (s[n - 3] != 'Z')x++; else return x;
18     if (s[n - 3] != 'Y')x++; else return x;
19 }
20 int main(){
21     int t,cas=1;
22     scanf("%d", &t);
23     while (t--){
24         scanf("%s", s);
25         n = strlen(s);
26         int x = judge(s,0);
27         double p = 1000*1.0 / 1024;
28         printf("Case #%d: ", cas++);
29         if (s[0] == '0'&&s[1] == '['){ printf("0.00%%\n"); continue; }
30         printf("%.2lf%%\n", (1.0-pow(p, x))*100);
31     }
32     return 0;
33 }
View Code
posted @ 2013-11-16 17:23  HaibaraAi  阅读(116)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3