結果

問題 No.48 ロボットの操縦
ユーザー l1267976l1267976
提出日時 2017-03-09 15:38:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 615 bytes
コンパイル時間 3,984 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2024-06-24 00:06:44
合計ジャッジ時間 7,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,144 KB
testcase_01 AC 129 ms
53,992 KB
testcase_02 AC 133 ms
54,084 KB
testcase_03 AC 135 ms
54,272 KB
testcase_04 AC 135 ms
54,180 KB
testcase_05 AC 133 ms
54,232 KB
testcase_06 WA -
testcase_07 AC 133 ms
54,052 KB
testcase_08 AC 131 ms
54,276 KB
testcase_09 AC 135 ms
54,196 KB
testcase_10 AC 134 ms
54,080 KB
testcase_11 AC 132 ms
54,004 KB
testcase_12 AC 137 ms
54,256 KB
testcase_13 AC 135 ms
54,200 KB
testcase_14 AC 134 ms
54,540 KB
testcase_15 AC 132 ms
54,364 KB
testcase_16 AC 132 ms
54,104 KB
testcase_17 AC 133 ms
54,460 KB
testcase_18 AC 132 ms
54,612 KB
testcase_19 AC 129 ms
53,992 KB
testcase_20 AC 127 ms
54,356 KB
testcase_21 AC 124 ms
54,068 KB
testcase_22 AC 130 ms
54,204 KB
testcase_23 AC 129 ms
53,992 KB
testcase_24 AC 132 ms
54,196 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