結果

問題 No.48 ロボットの操縦
ユーザー l1267976l1267976
提出日時 2017-03-09 15:25:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 4,093 ms
コンパイル使用メモリ 75,420 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-06-24 00:05:36
合計ジャッジ時間 8,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,960 KB
testcase_01 AC 132 ms
54,392 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 131 ms
54,164 KB
testcase_05 AC 134 ms
54,140 KB
testcase_06 AC 133 ms
53,972 KB
testcase_07 AC 135 ms
53,916 KB
testcase_08 WA -
testcase_09 AC 135 ms
54,092 KB
testcase_10 WA -
testcase_11 AC 131 ms
54,212 KB
testcase_12 AC 134 ms
53,984 KB
testcase_13 AC 135 ms
54,136 KB
testcase_14 AC 136 ms
53,888 KB
testcase_15 AC 133 ms
54,160 KB
testcase_16 AC 134 ms
54,152 KB
testcase_17 AC 132 ms
54,316 KB
testcase_18 WA -
testcase_19 AC 133 ms
54,200 KB
testcase_20 AC 137 ms
54,164 KB
testcase_21 AC 134 ms
53,932 KB
testcase_22 WA -
testcase_23 AC 132 ms
54,140 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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;

        if (xMove != 0) cnt++;

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

        System.out.println(cnt);

        sc.close();
    }

}
0