DescriptionCodepackage mainimport ( "strings" "strconv" "bufio" "os")var ( sc = bufio.NewScanner(os.Stdin) wr = bufio.NewWriter(os.Stdout))func main() { defer wr.Flush() var A, B, V int if sc.Scan() { temp := strings.Fields(sc.Text()) A, _ = strconv.Atoi(temp[0]) B, _ = strconv.Atoi(temp[1]) V, _ = strconv.Atoi(temp[2]) } // 높이가 V 미터 // 낮에는 A미터 올라감 // 자는 동안 B미터 미끄러짐 if (V - B) % (A - B) ==..