結果

問題 No.48 ロボットの操縦
ユーザー abcabc
提出日時 2016-10-25 12:56:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 620 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-05-03 05:58:59
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,288 KB
testcase_01 AC 135 ms
41,556 KB
testcase_02 AC 119 ms
40,104 KB
testcase_03 AC 143 ms
41,340 KB
testcase_04 AC 137 ms
41,224 KB
testcase_05 AC 137 ms
41,220 KB
testcase_06 AC 134 ms
41,068 KB
testcase_07 AC 135 ms
41,076 KB
testcase_08 AC 135 ms
41,220 KB
testcase_09 AC 135 ms
41,148 KB
testcase_10 AC 137 ms
41,348 KB
testcase_11 AC 116 ms
40,124 KB
testcase_12 AC 134 ms
41,360 KB
testcase_13 AC 131 ms
41,208 KB
testcase_14 AC 134 ms
41,128 KB
testcase_15 AC 132 ms
40,924 KB
testcase_16 AC 133 ms
41,588 KB
testcase_17 AC 134 ms
41,488 KB
testcase_18 AC 138 ms
41,076 KB
testcase_19 AC 138 ms
41,032 KB
testcase_20 AC 135 ms
41,120 KB
testcase_21 AC 135 ms
41,444 KB
testcase_22 AC 139 ms
41,372 KB
testcase_23 AC 135 ms
41,472 KB
testcase_24 AC 137 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int x = sc.nextInt();
        int y = sc.nextInt();

        int distancePerOpe = sc.nextInt();

        int operationCount = 0;

        if (x != 0) {
            operationCount = 1;
        }

        if (y < 0) {
            operationCount = 2;
        }

        operationCount += (Math.abs(x) + distancePerOpe - 1) / distancePerOpe;
        operationCount += (Math.abs(y) + distancePerOpe - 1) / distancePerOpe;

        System.out.println(operationCount);

    }

}
0