-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
31 lines (26 loc) Β· 934 Bytes
/
Main.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
package Implementation.P12933;
import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Implementation/P12933/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println(solve(br.readLine()));
}
static int solve(String s) {
int[] quack = new int[5];
for (int i = 0, len = s.length(); i < len; i++) {
char c = s.charAt(i);
if (c == 'q') {
if (quack[4] > 0) quack[4] --;
quack[0] ++;
} else {
int j = "quack".indexOf(c);
if (quack[j-1] == 0) return -1;
quack[j-1] --;
quack[j] ++;
}
}
if (quack[0] > 0 || quack[1] > 0 || quack[2] > 0 || quack[3] > 0) return -1;
return quack[4];
}
}