結果
問題 | No.48 ロボットの操縦 |
ユーザー | norioc |
提出日時 | 2015-07-21 03:22:37 |
言語 | Go1.4 (1.4.2) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 687 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 30,068 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-25 00:22:33 |
合計ジャッジ時間 | 997 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
package main import ( "fmt" ) // n 進むために必要な移動回数 func advance(n, l int) int { d := n / l if n%l != 0 { d++ } return d } func abs(n int) int { if n < 0 { return -n } return n } func main() { var x, y, l int fmt.Scanf("%d %d %d", &x, &y, &l) x = abs(x) ans := 0 if y >= 0 { ans += advance(y, l) if x != 0 { ans += advance(x, l) ans += 1 // 回転 } } else { if x != 0 { // x 方向に進む ans += 1 // 回転 ans += advance(x, l) if y < 0 { ans += 1 // 回転 ans += advance(-y, l) } } else { // 回転(Y 軸正から負の方向へ) ans += 2 ans += advance(-y, l) } } fmt.Println(ans) }