結果

問題 No.48 ロボットの操縦
ユーザー SagTokiSagToki
提出日時 2018-05-14 11:09:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,147 bytes
コンパイル時間 3,384 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-06-28 10:51:04
合計ジャッジ時間 7,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,372 KB
testcase_01 AC 130 ms
41,380 KB
testcase_02 AC 126 ms
41,140 KB
testcase_03 AC 131 ms
41,312 KB
testcase_04 AC 134 ms
41,460 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 127 ms
41,028 KB
testcase_08 AC 130 ms
41,124 KB
testcase_09 AC 128 ms
41,260 KB
testcase_10 AC 129 ms
41,100 KB
testcase_11 AC 130 ms
41,136 KB
testcase_12 AC 131 ms
41,252 KB
testcase_13 AC 132 ms
41,204 KB
testcase_14 AC 115 ms
40,260 KB
testcase_15 AC 127 ms
41,188 KB
testcase_16 AC 128 ms
41,152 KB
testcase_17 AC 129 ms
41,084 KB
testcase_18 AC 113 ms
39,924 KB
testcase_19 AC 127 ms
41,312 KB
testcase_20 AC 130 ms
41,032 KB
testcase_21 AC 130 ms
41,060 KB
testcase_22 AC 114 ms
39,904 KB
testcase_23 AC 127 ms
41,280 KB
testcase_24 AC 133 ms
41,048 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