-
Notifications
You must be signed in to change notification settings - Fork 0
/
kangaroo.go
79 lines (61 loc) · 1.45 KB
/
kangaroo.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
74
75
76
77
78
79
package main
import (
"bufio"
"fmt"
"io"
"os"
"strconv"
"strings"
)
/*
* Complete the 'kangaroo' function below.
*
* The function is expected to return a STRING.
* The function accepts following parameters:
* 1. INTEGER x1
* 2. INTEGER v1
* 3. INTEGER x2
* 4. INTEGER v2
*/
func kangaroo(x1 int32, v1 int32, x2 int32, v2 int32) string {
// Write your code here
if v1 > v2 && (x1-x2)%(v1-v2) == 0 {
return "YES"
}
return "NO"
}
func main() {
reader := bufio.NewReaderSize(os.Stdin, 16*1024*1024)
stdout, err := os.Create(os.Getenv("OUTPUT_PATH"))
checkError(err)
defer stdout.Close()
writer := bufio.NewWriterSize(stdout, 16*1024*1024)
firstMultipleInput := strings.Split(strings.TrimSpace(readLine(reader)), " ")
x1Temp, err := strconv.ParseInt(firstMultipleInput[0], 10, 64)
checkError(err)
x1 := int32(x1Temp)
v1Temp, err := strconv.ParseInt(firstMultipleInput[1], 10, 64)
checkError(err)
v1 := int32(v1Temp)
x2Temp, err := strconv.ParseInt(firstMultipleInput[2], 10, 64)
checkError(err)
x2 := int32(x2Temp)
v2Temp, err := strconv.ParseInt(firstMultipleInput[3], 10, 64)
checkError(err)
v2 := int32(v2Temp)
result := kangaroo(x1, v1, x2, v2)
fmt.Fprintf(writer, "%s\n", result)
writer.Flush()
}
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)
}
}