結果

問題 No.48 ロボットの操縦
ユーザー jonki324jonki324
提出日時 2018-06-05 16:58:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-06-30 09:55:35
合計ジャッジ時間 6,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,012 KB
testcase_01 AC 133 ms
54,060 KB
testcase_02 AC 130 ms
54,200 KB
testcase_03 AC 131 ms
53,952 KB
testcase_04 AC 133 ms
54,196 KB
testcase_05 AC 132 ms
54,100 KB
testcase_06 AC 132 ms
53,936 KB
testcase_07 AC 132 ms
53,940 KB
testcase_08 AC 129 ms
54,080 KB
testcase_09 AC 131 ms
54,088 KB
testcase_10 AC 135 ms
54,348 KB
testcase_11 AC 133 ms
54,108 KB
testcase_12 AC 132 ms
54,036 KB
testcase_13 AC 129 ms
53,980 KB
testcase_14 AC 129 ms
54,112 KB
testcase_15 AC 130 ms
53,976 KB
testcase_16 AC 128 ms
54,332 KB
testcase_17 AC 131 ms
53,860 KB
testcase_18 AC 133 ms
54,080 KB
testcase_19 AC 134 ms
54,296 KB
testcase_20 AC 131 ms
54,188 KB
testcase_21 AC 131 ms
54,040 KB
testcase_22 AC 132 ms
54,020 KB
testcase_23 AC 132 ms
53,956 KB
testcase_24 AC 133 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int x = scan.nextInt();
        int y = scan.nextInt();
        int l = scan.nextInt();
        int c = (int)(Math.ceil(Math.abs(x) / (double)l) + Math.ceil(Math.abs(y) / (double)l));
        if (y < 0) {
            c += 2;
        } else if (x != 0) {
            c += 1;
        }
        System.out.println(c);
        scan.close();
    }
}
0