-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJavascript.js
37 lines (33 loc) · 930 Bytes
/
Javascript.js
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
const streamOfConsciousness = readline().split(".");
const bustThreshold = parseInt(readline());
let totalCard = 0;
let totalCardInfBTH = 0;
streamOfConsciousness.forEach((s) => {
let cardInfBTH = 0;
for (let i = 0; i < s.length; i++) {
if (s[i] == "K" || s[i] == "Q" || s[i] == "J" || s[i] == "T") {
if (bustThreshold > 10) {
cardInfBTH++;
}
} else if (s[i] == "A") {
if (bustThreshold > 1) {
cardInfBTH++;
}
} else if (parseInt(s[i]) >= 2 && parseInt(s[i]) <= 9) {
if (bustThreshold > parseInt(s[i])) {
cardInfBTH++;
}
} else {
cardInfBTH = -1;
break;
}
}
if (cardInfBTH != -1) {
totalCard += s.length;
totalCardInfBTH += cardInfBTH;
}
});
let numberCardUnderBTH = (bustThreshold - 1) * 4;
let a = 52 - totalCard; //3
let b = numberCardUnderBTH - totalCardInfBTH; //2
console.log(Math.round((b / a) * 100) + "%");