結果

問題 No.48 ロボットの操縦
ユーザー S1hoS1ho
提出日時 2017-02-20 18:14:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 5,963 ms
コンパイル使用メモリ 83,512 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2024-06-09 16:28:52
合計ジャッジ時間 6,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,084 KB
testcase_01 AC 105 ms
53,040 KB
testcase_02 WA -
testcase_03 AC 102 ms
53,216 KB
testcase_04 AC 120 ms
54,168 KB
testcase_05 AC 107 ms
53,000 KB
testcase_06 AC 111 ms
54,192 KB
testcase_07 AC 101 ms
53,008 KB
testcase_08 AC 123 ms
54,092 KB
testcase_09 AC 118 ms
54,012 KB
testcase_10 AC 113 ms
53,920 KB
testcase_11 AC 111 ms
54,104 KB
testcase_12 AC 115 ms
53,912 KB
testcase_13 AC 106 ms
52,984 KB
testcase_14 AC 117 ms
53,984 KB
testcase_15 AC 114 ms
54,332 KB
testcase_16 AC 117 ms
54,064 KB
testcase_17 AC 108 ms
52,924 KB
testcase_18 AC 115 ms
54,236 KB
testcase_19 AC 96 ms
52,376 KB
testcase_20 AC 110 ms
53,924 KB
testcase_21 AC 114 ms
53,972 KB
testcase_22 AC 101 ms
53,136 KB
testcase_23 AC 108 ms
54,012 KB
testcase_24 AC 115 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Robot2 {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        double x = scanner.nextInt();
        double y = scanner.nextInt();
        double l = scanner.nextInt();
        
        double count = 0;
        
        //回転
        if(y<0){
            count++;
        }
        
        if(x != 0){
            count++;
        }
        
        x = Math.abs(x);
        y = Math.abs(y);
        
        //進む回数 -> 距離 / L (切り上げ)
        count += Math.ceil(x/l) + Math.ceil(y/l);
        
        System.out.println((int)count);
        
    }
    
}
0