ZOJ 2476 Total Amount 字符串模拟

- Total Amount

Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu

Description

Given a list of monetary amounts in a standard format, please calculate the total amount.

We define the format as follows:

1. The amount starts with '$'.

2. The amount could have a leading '0' if and only if it is less then 1.

3. The amount ends with a decimal point and exactly 2 following digits.

4. The digits to the left of the decimal point are separated into groups of three by commas (a group of one or two digits may appear on the left).

Input

The input consists of multiple tests. The first line of each test contains an integer N (1 <= N <= 10000) which indicates the number of amounts. The next N lines contain N amounts. All amounts and the total amount are between $0.00 and $20,000,000.00, inclusive. N=0 denotes the end of input.

Output

For each input test, output the total amount.

Sample Input

2
$1,234,567.89
$9,876,543.21
3
$0.01
$0.10
$1.00
0

Sample Output

$11,111,111.10
$1.11

 
#include<bits/stdc++.h>
using namespace std;
const int maxn=1e++;
char a[maxn];
int c[maxn],d[maxn],ans[maxn];
int main()
{
int T;
while(~scanf("%d",&T) && T)
{
memset(ans,,sizeof(ans));
memset(d,,sizeof(d));
int index,cnt=;
while(T--)
{
memset(c,,sizeof(c));
memset(a,,sizeof(a));
scanf("%s",a);
int k=;
for(int i=; i<strlen(a); i++)
{
if(isdigit(a[strlen(a)-i-]))
c[k++]=a[strlen(a)-i-]-'';
}
for(int i=; i<; i++)
{
d[i]+=c[i];
d[i+]+=d[i]/;
d[i]%=;
}
}
for(int i=; i>=; i--)
{
if(d[i]!=)
{
index=i;
break;
}
}
for(int i=index; i>=; i--)
ans[cnt++]=d[i];
printf("$");
if(cnt==)printf("");
else
{
for(int i=; i<cnt; i++)
{
printf("%d",ans[i]);
if((cnt-i-)%== && i!=cnt-)
printf(",");
}
}
printf(".%d%d\n",d[],d[]);
}
return ;
}
上一篇:docker4dotnet #3 在macOS上使用Visual Studio Code和Docker开发asp.net core和mysql应用


下一篇:[HTML/JS] JQuery 页面滚动回到顶部