結果

問題 No.48 ロボットの操縦
ユーザー mustonmuston
提出日時 2016-05-19 14:29:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 727 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 42,164 KB
最終ジャッジ日時 2024-11-21 18:40:47
合計ジャッジ時間 5,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,136 KB
testcase_01 AC 126 ms
41,152 KB
testcase_02 AC 121 ms
41,360 KB
testcase_03 AC 119 ms
42,164 KB
testcase_04 AC 122 ms
41,752 KB
testcase_05 AC 126 ms
41,564 KB
testcase_06 AC 121 ms
41,628 KB
testcase_07 AC 124 ms
41,136 KB
testcase_08 AC 130 ms
41,344 KB
testcase_09 AC 121 ms
41,700 KB
testcase_10 AC 128 ms
41,692 KB
testcase_11 AC 119 ms
41,676 KB
testcase_12 AC 123 ms
41,252 KB
testcase_13 AC 121 ms
41,252 KB
testcase_14 AC 122 ms
41,468 KB
testcase_15 AC 121 ms
41,560 KB
testcase_16 AC 120 ms
41,276 KB
testcase_17 AC 124 ms
41,136 KB
testcase_18 AC 125 ms
41,712 KB
testcase_19 AC 118 ms
41,608 KB
testcase_20 AC 118 ms
41,244 KB
testcase_21 AC 123 ms
41,344 KB
testcase_22 AC 121 ms
41,112 KB
testcase_23 AC 109 ms
41,656 KB
testcase_24 AC 107 ms
41,252 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){
      count += 2;
    }else if(x!=0){
      count++;
    }
    //Y軸方向の移動回数をカウント
    y= Math.abs(y);
    count += Math.ceil(y/l);
    //X軸方向の移動回数をカウント
    x= Math.abs(x);
    count += Math.ceil(x/l);
    System.out.println((int)count);
  }
}
0