結果

問題 No.48 ロボットの操縦
ユーザー mustonmuston
提出日時 2016-05-19 14:12:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 732 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 56,332 KB
最終ジャッジ日時 2024-05-01 13:54:40
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,888 KB
testcase_01 AC 120 ms
53,840 KB
testcase_02 AC 113 ms
54,044 KB
testcase_03 AC 114 ms
53,808 KB
testcase_04 AC 109 ms
53,228 KB
testcase_05 AC 109 ms
53,696 KB
testcase_06 AC 116 ms
54,068 KB
testcase_07 AC 125 ms
53,904 KB
testcase_08 AC 122 ms
53,760 KB
testcase_09 AC 122 ms
54,048 KB
testcase_10 AC 114 ms
52,716 KB
testcase_11 AC 129 ms
54,232 KB
testcase_12 AC 128 ms
54,068 KB
testcase_13 AC 108 ms
52,912 KB
testcase_14 AC 118 ms
56,332 KB
testcase_15 AC 121 ms
54,284 KB
testcase_16 AC 117 ms
53,860 KB
testcase_17 AC 104 ms
52,816 KB
testcase_18 AC 116 ms
54,108 KB
testcase_19 AC 114 ms
54,088 KB
testcase_20 AC 119 ms
54,088 KB
testcase_21 AC 117 ms
53,916 KB
testcase_22 AC 113 ms
53,724 KB
testcase_23 AC 103 ms
53,008 KB
testcase_24 AC 122 ms
53,880 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