#agc034c. [agc034_c]Tests
[agc034_c]Tests
Problem Statement
Takahashi and Aoki will take exams numbered to . They have decided to compete in these exams. The winner will be determined as follows:
-
For each exam , Takahashi decides its importance , which must be an integer between and (inclusive).
-
Let be (Takahashi's score on Exam ), and be (Aoki's score on Exam ). Takahashi wins if , and Aoki wins if .
Takahashi knows that Aoki will score on Exam , with his supernatural power.
Takahashi himself, on the other hand, will score on all the exams without studying more. For each hour of study, he can increase his score on some exam by . (He can only study for an integer number of hours.) However, he cannot score more than on an exam, since the perfect score for all the exams is .
Print the minimum number of study hours required for Takahashi to win.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum number of study hours required for Takahashi to win.
Sample Input 1
2 100
85 2 3
60 1 1
Sample Output 1
115
One optimal strategy is as follows:
-
Choose .
-
Study to score on Exam and on Exam .
Then, , and Takahashi will win.
Sample Input 2
2 100
85 2 3
60 10 10
Sample Output 2
77
Sample Input 3
1 100000
31415 2718 2818
Sample Output 3
31415
Sample Input 4
10 1000
451 4593 6263
324 310 6991
378 1431 7068
71 1757 9218
204 3676 4328
840 6221 9080
684 1545 8511
709 5467 8674
862 6504 9835
283 4965 9980
Sample Output 4
2540