-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbettinggame.java
More file actions
34 lines (31 loc) · 912 Bytes
/
bettinggame.java
File metadata and controls
34 lines (31 loc) · 912 Bytes
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
import java.util.Scanner;
public class bettinggame {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// taking input
String s = sc.nextLine();
int value = 10;
int bet = 1;
if (s.length() < 20) {
for (int i = 0; i < s.length(); i++) {
if (s.charAt(i) == 'W') {
value += bet;
if (bet > 1) {
bet /= 2;
}
} else {
value = value - bet;
bet *= 2;
}
if (value <= 0 || bet > value) {
System.out.println(-1);
}
if (i == s.length() - 1) {
System.out.println(value);
bet = 1;
}
}
}
sc.close();
}
}