結果

問題 No.48 ロボットの操縦
ユーザー jin128jin128
提出日時 2016-08-26 14:49:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-11-21 18:48:49
合計ジャッジ時間 5,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,056 KB
testcase_01 AC 125 ms
53,964 KB
testcase_02 AC 114 ms
53,976 KB
testcase_03 AC 123 ms
53,848 KB
testcase_04 AC 110 ms
52,780 KB
testcase_05 AC 109 ms
52,680 KB
testcase_06 AC 128 ms
53,840 KB
testcase_07 AC 114 ms
53,708 KB
testcase_08 AC 121 ms
54,016 KB
testcase_09 AC 118 ms
54,064 KB
testcase_10 AC 123 ms
53,972 KB
testcase_11 AC 122 ms
53,928 KB
testcase_12 AC 120 ms
53,852 KB
testcase_13 AC 124 ms
53,932 KB
testcase_14 AC 108 ms
52,980 KB
testcase_15 AC 128 ms
54,056 KB
testcase_16 AC 117 ms
53,864 KB
testcase_17 AC 131 ms
54,148 KB
testcase_18 AC 131 ms
54,172 KB
testcase_19 AC 123 ms
53,940 KB
testcase_20 AC 123 ms
54,008 KB
testcase_21 AC 113 ms
53,844 KB
testcase_22 AC 117 ms
53,816 KB
testcase_23 AC 126 ms
53,912 KB
testcase_24 AC 120 ms
53,916 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