結果

問題 No.48 ロボットの操縦
ユーザー Flere0114Flere0114
提出日時 2016-02-10 17:41:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 472 bytes
コンパイル時間 3,435 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-09-21 22:06:07
合計ジャッジ時間 7,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,736 KB
testcase_01 AC 121 ms
41,112 KB
testcase_02 WA -
testcase_03 AC 116 ms
41,040 KB
testcase_04 AC 114 ms
40,920 KB
testcase_05 AC 132 ms
41,284 KB
testcase_06 AC 100 ms
40,068 KB
testcase_07 AC 114 ms
41,236 KB
testcase_08 AC 115 ms
40,896 KB
testcase_09 AC 124 ms
41,344 KB
testcase_10 AC 125 ms
41,356 KB
testcase_11 AC 108 ms
39,948 KB
testcase_12 AC 117 ms
41,172 KB
testcase_13 AC 108 ms
39,984 KB
testcase_14 AC 103 ms
40,116 KB
testcase_15 AC 109 ms
40,016 KB
testcase_16 AC 117 ms
41,040 KB
testcase_17 AC 115 ms
41,360 KB
testcase_18 AC 115 ms
41,044 KB
testcase_19 AC 120 ms
41,204 KB
testcase_20 AC 103 ms
40,028 KB
testcase_21 AC 101 ms
39,876 KB
testcase_22 AC 116 ms
41,488 KB
testcase_23 AC 118 ms
41,276 KB
testcase_24 AC 103 ms
39,880 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(Y < 0){
            ans++;
        }
        if(X != 0){
            ans++;
        }

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