-
Notifications
You must be signed in to change notification settings - Fork 0
/
solution_06.go
73 lines (57 loc) · 1.39 KB
/
solution_06.go
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package main
import (
"bufio"
"fmt"
"io"
"os"
"strconv"
"strings"
)
// Complete the plusMinus function below.
func plusMinus(arr []int32) {
length := len(arr)
l := float32(length)
var pozitive, negative, zero float32
var pRatio, nRatio, zRatio float32
pozitive,negative,zero = 0,0,0
for _, item := range arr{
if item>0{
pozitive++
}else if item<0{
negative++
}else{
zero++
}
}
pRatio, nRatio, zRatio = pozitive/l, negative/l, zero/l
fmt.Printf("%.6f\n", pRatio)
fmt.Printf("%.6f\n", nRatio)
fmt.Printf("%.6f\n", zRatio)
}
func main() {
reader := bufio.NewReaderSize(os.Stdin, 1024 * 1024)
nTemp, err := strconv.ParseInt(readLine(reader), 10, 64)
checkError(err)
n := int32(nTemp)
arrTemp := strings.Split(readLine(reader), " ")
var arr []int32
for i := 0; i < int(n); i++ {
arrItemTemp, err := strconv.ParseInt(arrTemp[i], 10, 64)
checkError(err)
arrItem := int32(arrItemTemp)
arr = append(arr, arrItem)
}
plusMinus(arr)
}
func readLine(reader *bufio.Reader) string {
str, _, err := reader.ReadLine()
if err == io.EOF {
return ""
}
return strings.TrimRight(string(str), "\r\n")
}
func checkError(err error) {
if err != nil {
panic(err)
}
}