- Time limit: 1.00 s
- Memory limit: 512 MB
You are given two arrays of integers.
Your task is to select a nonempty prefix from both arrays such that the average of all selected numbers is as large as possible.
Input
The first line has an integer .
The second line has integers : the numbers in the first array.
The third line has integers : the numbers in the second array.
Output
Print two numbers: the prefix sizes.
Your answer is considered correct if the absolute or relative difference to the maximum average is at most .
Constraints
Example
Input:
4 1 5 5 2 3 1 3 1
Output:
3 1
Explanation: if you choose the prefixes and , the average is which is the maximum possible average.