結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,288 KB
testcase_01 AC 126 ms
41,580 KB
testcase_02 AC 125 ms
40,884 KB
testcase_03 AC 125 ms
41,316 KB
testcase_04 AC 125 ms
41,264 KB
testcase_05 AC 123 ms
41,812 KB
testcase_06 AC 124 ms
41,328 KB
testcase_07 AC 123 ms
41,344 KB
testcase_08 AC 128 ms
41,324 KB
testcase_09 AC 125 ms
41,084 KB
testcase_10 AC 126 ms
41,352 KB
testcase_11 AC 124 ms
40,956 KB
testcase_12 AC 123 ms
41,340 KB
testcase_13 AC 127 ms
41,364 KB
testcase_14 AC 132 ms
41,296 KB
testcase_15 AC 128 ms
41,108 KB
testcase_16 AC 124 ms
41,472 KB
testcase_17 AC 131 ms
41,332 KB
testcase_18 AC 131 ms
41,580 KB
testcase_19 AC 117 ms
41,164 KB
testcase_20 AC 129 ms
41,600 KB
testcase_21 AC 131 ms
40,944 KB
testcase_22 AC 128 ms
41,212 KB
testcase_23 AC 124 ms
41,236 KB
testcase_24 AC 122 ms
41,352 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