-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRPGProtagonist.java
executable file
·43 lines (30 loc) · 1.07 KB
/
RPGProtagonist.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package testJava;
import java.util.*;
public class RPGProtagonist {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scn = new Scanner(System.in);
int t = scn.nextInt();
while (t-- != 0) {
long p = scn.nextLong(), f = scn.nextLong(), cnts = scn.nextLong(), cntw = scn.nextLong();
long s = scn.nextLong(), w = scn.nextLong();
long ans = 0;
if(w<s){
long temp = cnts;
cnts = cntw;
cntw = temp;
temp = s;
s = w;
w = temp;
}
for (int i = 0; i <= cnts && i * s <= p; i++) {
long ds = Math.min((cnts - i), f / s);
long mrs = p - (i * s);
long drs = f - ds * s;
long tx = Math.min(cntw, mrs / w + drs / w);
ans = Math.max(ans, tx + i + ds);
}
System.out.println(ans);
}
}
}