結果

問題 No.48 ロボットの操縦
ユーザー S1hoS1ho
提出日時 2017-02-20 18:14:47
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 4,279 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,200 KB
最終ジャッジ日時 2024-12-30 10:42:37
合計ジャッジ時間 8,704 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,048 KB
testcase_01 AC 140 ms
41,072 KB
testcase_02 WA -
testcase_03 AC 140 ms
41,064 KB
testcase_04 AC 131 ms
40,928 KB
testcase_05 AC 127 ms
39,880 KB
testcase_06 AC 131 ms
40,984 KB
testcase_07 AC 139 ms
41,080 KB
testcase_08 AC 125 ms
39,772 KB
testcase_09 AC 134 ms
39,924 KB
testcase_10 AC 127 ms
40,672 KB
testcase_11 AC 136 ms
41,048 KB
testcase_12 AC 144 ms
40,852 KB
testcase_13 AC 137 ms
40,968 KB
testcase_14 AC 134 ms
39,968 KB
testcase_15 AC 139 ms
41,112 KB
testcase_16 AC 135 ms
39,676 KB
testcase_17 AC 141 ms
41,200 KB
testcase_18 AC 135 ms
40,108 KB
testcase_19 AC 139 ms
41,172 KB
testcase_20 AC 136 ms
41,188 KB
testcase_21 AC 139 ms
41,068 KB
testcase_22 AC 134 ms
40,976 KB
testcase_23 AC 123 ms
39,780 KB
testcase_24 AC 133 ms
41,060 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