結果

問題 No.48 ロボットの操縦
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-24 04:55:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 1,128 bytes
コンパイル時間 2,994 ms
コンパイル使用メモリ 77,128 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-11-21 18:41:03
合計ジャッジ時間 6,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,320 KB
testcase_01 AC 123 ms
41,248 KB
testcase_02 AC 122 ms
41,344 KB
testcase_03 AC 127 ms
40,964 KB
testcase_04 AC 127 ms
41,452 KB
testcase_05 AC 111 ms
41,204 KB
testcase_06 AC 121 ms
41,244 KB
testcase_07 AC 119 ms
41,424 KB
testcase_08 AC 124 ms
41,132 KB
testcase_09 AC 108 ms
41,656 KB
testcase_10 AC 119 ms
41,376 KB
testcase_11 AC 127 ms
41,228 KB
testcase_12 AC 119 ms
41,324 KB
testcase_13 AC 111 ms
41,160 KB
testcase_14 AC 107 ms
41,260 KB
testcase_15 AC 123 ms
41,256 KB
testcase_16 AC 106 ms
41,224 KB
testcase_17 AC 119 ms
41,104 KB
testcase_18 AC 124 ms
41,296 KB
testcase_19 AC 128 ms
41,296 KB
testcase_20 AC 106 ms
41,412 KB
testcase_21 AC 106 ms
41,352 KB
testcase_22 AC 120 ms
41,280 KB
testcase_23 AC 110 ms
41,528 KB
testcase_24 AC 125 ms
41,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Exercises13{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int x = sc.nextInt();

    int y = sc.nextInt();

    int maxMove = sc.nextInt();

    int oderCount = 0;

    if (y >= 0){
      double count = Math.ceil((double)y / (double)maxMove);
      oderCount += (int)count;

      // 方向転換
      // oderCount += 1;

      if (x > 0){
        oderCount += 1;
        count = Math.ceil((double)x / (double)maxMove);
        oderCount += (int)count;
      }else if (x < 0){
        oderCount += 1;
        count = Math.ceil((double)x / (double)maxMove * -1);
        oderCount += (int)count;
      }
    }else{
      oderCount += 1;

      if (x > 0){
        double count = Math.ceil((double)x / (double)maxMove);
        oderCount += (int)count;
      }else{
        double count = Math.ceil((double)x / (double)maxMove * -1);
        oderCount += (int)count;
      }

      oderCount += 1;

      double count = Math.ceil((double)y / (double)maxMove * -1);
      oderCount += (int)count;

    }

    System.out.println(oderCount);
  }
}
0