Alice and Carl love collecting trading cards. They both have large collections, and want to know how much their collections are worth. Both of their collections consist of several types of cards, each with an associated value.
Input Specification
The first line of input consists of a single integer,
, the number of card types Alice
has. The second line of input consists of
integers,
through
, where
represents the value
of Alice's
card type
. The third line of input consists of
integers,
through
,
where
represents how many cards of the
type Alice has
.
The fourth line of input consists of a single integer,
, the number of card types
Carl has. The fifth line of input consists of
integers,
through
, where
represents the
value of Carl's
card type
. The sixth line of input consists of
integers,
through
, where
represents how many cards of the
type Carl has
.
Output Specification
On a single line, output two space separated integers: the value of Alice's collection and the value of Carl's collection, respectively.
Sample Input 1
4
1 2 3 4
3 5 3 1
3
10 4 60
3 20 1
Sample Output 1
26 170
Comments
friendly reminder to take in all of alice's info (cards and card values) before you start with carl's!
I'm getting ArrayIndexOutOfBounds error on Test Case 8 and 10, is there a way I can see what numbers were used for those cases?
You're getting your m's and n's mixed up.
No