結果
問題 | No.48 ロボットの操縦 |
ユーザー | yo-kondo |
提出日時 | 2018-03-10 19:07:08 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,024 bytes |
コンパイル時間 | 15,268 ms |
コンパイル使用メモリ | 218,500 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-14 17:33:43 |
合計ジャッジ時間 | 15,823 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
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 // 最初は北を向いているため南に向かうには方向転換が必要 if n < 0 { orderCount++ } orderCount += int(math.Abs(math.Ceil(float64(n) / float64(d)))) // 方向転換 if e != 0{ orderCount++ orderCount += int(math.Abs(math.Ceil(float64(e) / float64(d)))) } return strconv.Itoa(orderCount) }