結果

問題 No.48 ロボットの操縦
ユーザー SagTokiSagToki
提出日時 2018-05-14 11:10:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 1,146 bytes
コンパイル時間 3,331 ms
コンパイル使用メモリ 78,648 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-28 10:51:33
合計ジャッジ時間 7,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,580 KB
testcase_01 AC 131 ms
41,020 KB
testcase_02 AC 133 ms
41,252 KB
testcase_03 AC 134 ms
41,260 KB
testcase_04 AC 133 ms
40,964 KB
testcase_05 AC 133 ms
41,124 KB
testcase_06 AC 133 ms
41,080 KB
testcase_07 AC 133 ms
40,864 KB
testcase_08 AC 137 ms
41,480 KB
testcase_09 AC 137 ms
41,388 KB
testcase_10 AC 135 ms
41,120 KB
testcase_11 AC 134 ms
41,252 KB
testcase_12 AC 128 ms
41,208 KB
testcase_13 AC 135 ms
41,300 KB
testcase_14 AC 135 ms
41,048 KB
testcase_15 AC 138 ms
41,040 KB
testcase_16 AC 133 ms
41,284 KB
testcase_17 AC 134 ms
41,332 KB
testcase_18 AC 133 ms
40,984 KB
testcase_19 AC 119 ms
40,284 KB
testcase_20 AC 136 ms
40,960 KB
testcase_21 AC 136 ms
41,284 KB
testcase_22 AC 135 ms
41,132 KB
testcase_23 AC 133 ms
40,968 KB
testcase_24 AC 134 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class PilotingTheRobot {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
            double X = scanner.nextInt();
            double Y = scanner.nextInt();
            double L = scanner.nextInt();
            int count = 0; //命令回数
           
            if(L<1 || L>Math.pow(10,9)){
                System.out.println("Lは1≦L≦1000000000の範囲で入力してください");
                System.exit(0);
            }

            if(Y < 0){
                count += 2;
            }else if(X != 0){
                count ++;
            }
        
            if(X<0){
                X = X * -1;
            }
            count += Math.ceil(X/L);
            if(Y<0){
                Y = Y * -1;
            }
            count +=  Math.ceil(Y/L);
            
            System.out.println(count);          
        }catch(InputMismatchException e){
            System.out.println("数値を入力してください。");
        }catch(Exception E){
            System.out.println("予期せぬエラーです");
        }
    }  
}
0