結果

問題 No.48 ロボットの操縦
ユーザー l1267976l1267976
提出日時 2017-03-09 15:43:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 616 bytes
コンパイル時間 4,077 ms
コンパイル使用メモリ 75,252 KB
実行使用メモリ 54,788 KB
最終ジャッジ日時 2024-06-24 00:07:04
合計ジャッジ時間 7,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,380 KB
testcase_01 AC 132 ms
54,332 KB
testcase_02 AC 135 ms
54,788 KB
testcase_03 AC 134 ms
54,540 KB
testcase_04 AC 134 ms
54,232 KB
testcase_05 AC 133 ms
54,040 KB
testcase_06 AC 130 ms
54,136 KB
testcase_07 AC 135 ms
54,348 KB
testcase_08 AC 131 ms
54,188 KB
testcase_09 AC 135 ms
54,404 KB
testcase_10 AC 134 ms
53,972 KB
testcase_11 AC 133 ms
54,252 KB
testcase_12 AC 134 ms
53,852 KB
testcase_13 AC 134 ms
54,232 KB
testcase_14 AC 132 ms
54,240 KB
testcase_15 AC 137 ms
54,000 KB
testcase_16 AC 134 ms
54,068 KB
testcase_17 AC 140 ms
54,084 KB
testcase_18 AC 135 ms
54,192 KB
testcase_19 AC 134 ms
54,084 KB
testcase_20 AC 133 ms
54,136 KB
testcase_21 AC 132 ms
54,464 KB
testcase_22 AC 134 ms
54,372 KB
testcase_23 AC 133 ms
54,312 KB
testcase_24 AC 134 ms
54,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No48 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        int y = sc.nextInt();
        int l = sc.nextInt();

        int cnt = 0;

        int xMove = Math.abs(x / l);
        if (x % l != 0) xMove++;
        cnt += xMove;

        int yMove = Math.abs(y / l);
        if (y % l != 0) yMove++;
        cnt += yMove;

        if (x != 0 && y >= 0) {
            cnt++;
        }

        if (y < 0) {
            cnt += 2;
        }

        System.out.println(cnt);

        sc.close();
    }

}
0