結果

問題 No.48 ロボットの操縦
ユーザー yo-kondoyo-kondo
提出日時 2018-03-10 19:57:36
言語 Go
(1.22.1)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 1,270 bytes
コンパイル時間 12,542 ms
コンパイル使用メモリ 225,472 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-22 18:24:31
合計ジャッジ時間 11,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 0 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"math"
	"os"
	"strconv"
)

// エントリポイント
func main() {
	in := bufio.NewScanner(os.Stdin)
	// 移動先の東西軸座標
	in.Scan()
	input1 := in.Text()
	// 移動先の南北軸座標
	in.Scan()
	input2 := in.Text()
	// ロボットが1命令につき前進することができる最大の距離
	in.Scan()
	input3 := in.Text()

	fmt.Println(maneuver(input1, input2, input3))
}

// 何回命令すれば目的地に到着できるか計算する。
func maneuver(eastWest string, northSouth string, distance string) string {
	e, _ := strconv.Atoi(eastWest)
	n, _ := strconv.Atoi(northSouth)
	d, _ := strconv.Atoi(distance)
	orderCount := 0

	eFloat := float64(e)
	nFloat := float64(n)
	dFloat := float64(d)

	// 先に進行の命令数を計算
	progressNS := int(math.Ceil(math.Abs(nFloat / dFloat)))
	progressEW := int(math.Ceil(math.Abs(eFloat / dFloat)))

	if n == 0 && e != 0 {
		// 東西のみ
		orderCount++
		orderCount += progressEW
	} else if n < 0 {
		// 先に東西に向かう
		orderCount++
		orderCount += progressEW
		orderCount++
		orderCount += progressNS
	} else {
		orderCount += progressNS
		if e != 0 {
			orderCount++
			orderCount += progressEW
		}
	}
	return strconv.Itoa(orderCount)
}
0