結果

問題 No.48 ロボットの操縦
ユーザー mustonmuston
提出日時 2016-05-19 14:12:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 732 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-11-21 18:40:07
合計ジャッジ時間 7,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,248 KB
testcase_01 AC 136 ms
41,300 KB
testcase_02 AC 138 ms
41,256 KB
testcase_03 AC 138 ms
41,200 KB
testcase_04 AC 137 ms
41,312 KB
testcase_05 AC 141 ms
41,204 KB
testcase_06 AC 149 ms
41,320 KB
testcase_07 AC 139 ms
41,216 KB
testcase_08 AC 138 ms
41,164 KB
testcase_09 AC 139 ms
41,236 KB
testcase_10 AC 138 ms
41,096 KB
testcase_11 AC 137 ms
41,436 KB
testcase_12 AC 139 ms
41,388 KB
testcase_13 AC 136 ms
41,312 KB
testcase_14 AC 137 ms
41,344 KB
testcase_15 AC 137 ms
41,088 KB
testcase_16 AC 135 ms
41,212 KB
testcase_17 AC 136 ms
41,368 KB
testcase_18 AC 136 ms
41,304 KB
testcase_19 AC 135 ms
41,256 KB
testcase_20 AC 142 ms
41,264 KB
testcase_21 AC 139 ms
41,440 KB
testcase_22 AC 138 ms
41,228 KB
testcase_23 AC 136 ms
41,384 KB
testcase_24 AC 135 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
/*yukicoder No.48 ロボットの操縦*/
class No48{
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    double x = scan.nextInt();  //目的のX座標
    double y = scan.nextInt();  //目的のY座標
    double l = scan.nextInt();  //一度の命令で前進できる量
    double count = 0;  //移動回数
    //回転回数をカウント
    if(y<0){
      y = -y;
      count += 2;
    }else if(x!=0){
      count++;
    }else{
    }
    //Y軸方向の移動回数をカウント
    count += Math.ceil(y/l);
    //X軸方向の移動回数をカウント
    if(x<0) x = -x;
    count += Math.ceil(x/l);
    System.out.println((int)count);
  }
}
0