結果

問題 No.48 ロボットの操縦
ユーザー dazydazy
提出日時 2016-09-04 02:33:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 927 bytes
コンパイル時間 3,534 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-11-21 18:49:44
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,504 KB
testcase_01 AC 122 ms
41,312 KB
testcase_02 AC 125 ms
41,128 KB
testcase_03 AC 123 ms
41,128 KB
testcase_04 AC 123 ms
41,416 KB
testcase_05 AC 126 ms
41,248 KB
testcase_06 AC 125 ms
41,292 KB
testcase_07 AC 118 ms
41,272 KB
testcase_08 AC 126 ms
41,104 KB
testcase_09 AC 121 ms
41,160 KB
testcase_10 AC 125 ms
41,768 KB
testcase_11 AC 120 ms
40,272 KB
testcase_12 AC 125 ms
41,212 KB
testcase_13 AC 127 ms
41,684 KB
testcase_14 AC 125 ms
41,352 KB
testcase_15 AC 122 ms
41,180 KB
testcase_16 AC 111 ms
41,384 KB
testcase_17 AC 124 ms
41,296 KB
testcase_18 AC 124 ms
41,656 KB
testcase_19 AC 111 ms
41,524 KB
testcase_20 AC 127 ms
41,332 KB
testcase_21 AC 125 ms
41,528 KB
testcase_22 AC 123 ms
41,296 KB
testcase_23 AC 124 ms
41,540 KB
testcase_24 AC 126 ms
41,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int X = scan.nextInt();
        int Y = scan.nextInt();
        int L = scan.nextInt();
        if (X < -1000000000||X > 1000000000||
            Y < -1000000000||Y > 1000000000||
            L < 1 || L > 1000000000) System.exit(1);

        int i = 0;
        if (Y >= 0) {
            i += Y/L;
            if (Y%L != 0) i++;
            if (X!=0) {
                X = Math.abs(X);
                i++;
                i += X/L;
                if (X%L != 0) i++;
            }
        } else {
            Y = Math.abs(Y);
            i += 2;
            if (X!=0) {
                X = Math.abs(X);
                i += X/L;
                if (X%L != 0) i++;
            }
            i += Y/L;
            if (Y%L != 0) i++;
        }

        System.out.println(i);
    }
}
0