結果

問題 No.48 ロボットの操縦
ユーザー Flere0114Flere0114
提出日時 2016-02-10 17:48:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-11-21 18:34:50
合計ジャッジ時間 7,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,116 KB
testcase_01 AC 122 ms
40,984 KB
testcase_02 AC 120 ms
41,464 KB
testcase_03 AC 117 ms
40,084 KB
testcase_04 AC 118 ms
41,036 KB
testcase_05 AC 110 ms
40,072 KB
testcase_06 AC 119 ms
41,136 KB
testcase_07 AC 105 ms
40,128 KB
testcase_08 AC 108 ms
40,168 KB
testcase_09 AC 126 ms
41,432 KB
testcase_10 AC 122 ms
41,468 KB
testcase_11 AC 125 ms
41,136 KB
testcase_12 AC 123 ms
41,248 KB
testcase_13 AC 126 ms
41,092 KB
testcase_14 AC 109 ms
40,144 KB
testcase_15 AC 118 ms
40,916 KB
testcase_16 AC 102 ms
40,156 KB
testcase_17 AC 123 ms
41,336 KB
testcase_18 AC 121 ms
41,384 KB
testcase_19 AC 118 ms
40,992 KB
testcase_20 AC 127 ms
41,180 KB
testcase_21 AC 117 ms
41,056 KB
testcase_22 AC 116 ms
40,848 KB
testcase_23 AC 120 ms
41,296 KB
testcase_24 AC 116 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

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 ans = 0;

        ans += (Math.abs(Y) + L - 1) / L;
        ans += (Math.abs(X) + L - 1) / L;
        if(X != 0){
            ans++;
        }else if(Y < 0){
            ans++;
        }
        if(Y < 0){
            ans++;
        }

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