結果

問題 No.48 ロボットの操縦
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-15 01:13:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 749 bytes
コンパイル時間 4,136 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-06-28 12:00:20
合計ジャッジ時間 8,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
39,796 KB
testcase_01 AC 137 ms
40,848 KB
testcase_02 AC 123 ms
40,812 KB
testcase_03 AC 135 ms
41,000 KB
testcase_04 AC 135 ms
40,996 KB
testcase_05 AC 135 ms
40,832 KB
testcase_06 AC 143 ms
41,436 KB
testcase_07 AC 138 ms
41,056 KB
testcase_08 AC 136 ms
41,116 KB
testcase_09 AC 139 ms
41,160 KB
testcase_10 AC 134 ms
41,224 KB
testcase_11 AC 135 ms
41,028 KB
testcase_12 AC 135 ms
40,908 KB
testcase_13 AC 140 ms
40,844 KB
testcase_14 AC 137 ms
41,356 KB
testcase_15 AC 135 ms
41,208 KB
testcase_16 AC 136 ms
41,172 KB
testcase_17 AC 135 ms
40,968 KB
testcase_18 AC 136 ms
41,396 KB
testcase_19 AC 139 ms
41,120 KB
testcase_20 AC 137 ms
41,516 KB
testcase_21 AC 136 ms
40,972 KB
testcase_22 AC 136 ms
41,092 KB
testcase_23 AC 138 ms
41,120 KB
testcase_24 AC 138 ms
41,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RobotOperation{
    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 num_step = 0;
        if(X != 0 && Y >= 0){
            num_step += 1;
        }else if(Y < 0){
            num_step += 2;
        }

        if(X%L == 0){
            num_step += Math.abs(X)/L;
        }else{
            num_step += Math.abs(X)/L+1;
        }

        if(Y%L == 0){
            num_step += Math.abs(Y)/L;
        }else{
            num_step += Math.abs(Y)/L+1;
        }
        System.out.println(num_step);

    }
}
0