#include <stdio.h>
#include <stdlib.h>
typedef long long ll;
ll pr(ll a, ll t)
{
ll ret=1;
while (t--)
ret*=a;
return ret;
}
ll a[100];
int cmp (const void *a, const void *b)
{
return *(ll*)b-*(ll*)a;
}
int main()
{
ll test, i, sum, j;
scanf("%lld",&test);
while (test--)
{
for (i=0 ; scanf("%lld",&a[i]) && a[i] ; i++);
qsort(a,i,sizeof(ll),cmp);
for (sum=0, j=0 ; j<i ; j++ )
{
sum += (pr(a[j],j+1));
}
sum *= 2;
if (sum<=5000000)
printf("%lld\n",sum);
else
printf("Too expensive\n");
}
return 0;
}
Sunday, October 23, 2011
[UVa] 11428 - A Minimum Land Price
Subscribe to:
Post Comments (Atom)
Connect Rapoo MT750S with Linux (Tested on Manjaro)
I bought this obvious copy of MX Master 2S in hopes of having the device switching functionality along with a lightweight body because I ha...
-
I like coding a lot, keeps me glued to the PC for hours. For that reason it's a need to edit the Syntax Highlighter to suit my eyes for...
-
I bought this obvious copy of MX Master 2S in hopes of having the device switching functionality along with a lightweight body because I ha...
-
Method: The problem at first glance seems too straightforward but it's not that much. Think a bit about the lines "Erin can add ...
No comments:
Post a Comment
Post your comment here. If you want to say something about programming problems, scripts, software etc, please try to be as descriptive as possible.