結果

問題 No.48 ロボットの操縦
ユーザー jin128jin128
提出日時 2016-08-26 14:49:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-05-01 14:01:50
合計ジャッジ時間 5,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,304 KB
testcase_01 AC 114 ms
41,496 KB
testcase_02 AC 114 ms
41,288 KB
testcase_03 AC 118 ms
41,344 KB
testcase_04 AC 104 ms
41,324 KB
testcase_05 AC 105 ms
41,508 KB
testcase_06 AC 119 ms
41,256 KB
testcase_07 AC 121 ms
41,128 KB
testcase_08 AC 117 ms
41,472 KB
testcase_09 AC 115 ms
41,780 KB
testcase_10 AC 114 ms
41,708 KB
testcase_11 AC 115 ms
41,324 KB
testcase_12 AC 105 ms
41,848 KB
testcase_13 AC 102 ms
41,468 KB
testcase_14 AC 120 ms
41,428 KB
testcase_15 AC 122 ms
41,312 KB
testcase_16 AC 116 ms
41,020 KB
testcase_17 AC 115 ms
41,228 KB
testcase_18 AC 117 ms
41,328 KB
testcase_19 AC 105 ms
41,504 KB
testcase_20 AC 112 ms
41,768 KB
testcase_21 AC 105 ms
41,516 KB
testcase_22 AC 119 ms
41,128 KB
testcase_23 AC 115 ms
41,348 KB
testcase_24 AC 116 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class S18_robot{
  public static void main(String[] args){
    int x, y, l;
    int count = 0;
    Scanner scn = new Scanner(System.in);

    x = scn.nextInt();
    y = scn.nextInt();
    l = scn.nextInt();

    if(y < 0){
      count += 2;
    }else if(Math.abs(x) > 0){
      count ++;
    }

    if(x % l == 0)
      count += Math.abs(x) / l;
    else
      count += Math.abs(x) / l + 1;

    if(y % l == 0)
      count += Math.abs(y) / l;
    else
      count += Math.abs(y) / l + 1;

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