結果

問題 No.48 ロボットの操縦
ユーザー SagTokiSagToki
提出日時 2018-05-14 10:59:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,178 bytes
コンパイル時間 3,395 ms
コンパイル使用メモリ 80,028 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-06-28 10:50:56
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,312 KB
testcase_01 AC 126 ms
41,080 KB
testcase_02 WA -
testcase_03 AC 114 ms
39,952 KB
testcase_04 AC 127 ms
41,396 KB
testcase_05 AC 128 ms
41,308 KB
testcase_06 AC 114 ms
40,072 KB
testcase_07 AC 126 ms
41,440 KB
testcase_08 AC 128 ms
41,180 KB
testcase_09 AC 126 ms
41,568 KB
testcase_10 AC 129 ms
41,128 KB
testcase_11 AC 112 ms
40,148 KB
testcase_12 AC 129 ms
41,012 KB
testcase_13 AC 132 ms
41,380 KB
testcase_14 AC 132 ms
41,424 KB
testcase_15 AC 128 ms
41,608 KB
testcase_16 AC 126 ms
40,944 KB
testcase_17 AC 130 ms
41,316 KB
testcase_18 AC 132 ms
41,612 KB
testcase_19 AC 113 ms
40,156 KB
testcase_20 AC 126 ms
40,992 KB
testcase_21 AC 113 ms
39,860 KB
testcase_22 AC 111 ms
39,732 KB
testcase_23 AC 126 ms
41,668 KB
testcase_24 AC 114 ms
40,140 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 && X != 0){
                count++;
            }else if(Y < 0 && X != 0){
                count += 2;
            }
        
            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