#include<iostream>
using namespace std;
int main()
{
    int T,N,a,Mile,Juice,c=1;
    cin >> T;
    while(T--)
    {
        Mile = 0;
        Juice = 0;
        cin >> N;
        while(N--)
        {
            cin >> a;
            if((a+1)%30==0)
                Mile+=(a+1)/30*10;
            else
                Mile+=((a+1)/30+1)*10;
            if((a+1)%60==0)
                Juice+=(a+1)/60*15;
            else
                Juice+=((a+1)/60+1)*15;
        }
        if(Mile<Juice)
            cout << "Case " << c++ << ": Mile " << Mile;
        else if(Juice<Mile)
            cout << "Case " << c++ << ": Juice " << Juice;
        else
            cout << "Case " << c++ << ": Mile Juice " << Mile;
        cout << "\n";
    }
    return 0;
}
Monday, August 25, 2014
12157 Tarif Plan
Subscribe to:
Post Comments (Atom)
Triathlon
Triathlon - CodeChef # include < bits/stdc++.h > using namespace std ; # define fi first # define se second # define mp ...
- 
# include < bits/stdc++.h > using namespace std ; long long arry [ 100010 ] , segment [ 400050 ] ; void build ( long long ...
- 
DQUERY MO’s Algorithm # include < bits/stdc++.h > using namespace std ; # define fi first # define se second # define ...
- 
# include < bits/stdc++.h > using namespace std ; int main ( ) { int T , Ax , Ay , Bx , By , Cx , Cy , c = 1 , r ; // ...
 
No comments:
Post a Comment