結果

問題 No.48 ロボットの操縦
ユーザー HaleakalaHaleakala
提出日時 2018-02-24 17:05:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 3,955 ms
コンパイル使用メモリ 79,852 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-10-14 15:02:19
合計ジャッジ時間 8,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,300 KB
testcase_01 AC 134 ms
54,388 KB
testcase_02 AC 131 ms
54,232 KB
testcase_03 AC 138 ms
54,004 KB
testcase_04 AC 132 ms
54,148 KB
testcase_05 AC 132 ms
53,952 KB
testcase_06 AC 133 ms
54,096 KB
testcase_07 AC 134 ms
54,004 KB
testcase_08 AC 135 ms
53,840 KB
testcase_09 AC 134 ms
53,912 KB
testcase_10 AC 134 ms
54,004 KB
testcase_11 AC 133 ms
54,316 KB
testcase_12 AC 137 ms
53,836 KB
testcase_13 AC 135 ms
53,940 KB
testcase_14 AC 135 ms
54,156 KB
testcase_15 AC 133 ms
53,984 KB
testcase_16 AC 135 ms
54,032 KB
testcase_17 AC 139 ms
53,968 KB
testcase_18 AC 134 ms
53,876 KB
testcase_19 AC 134 ms
54,192 KB
testcase_20 AC 133 ms
54,196 KB
testcase_21 AC 133 ms
53,876 KB
testcase_22 AC 133 ms
53,828 KB
testcase_23 AC 133 ms
54,064 KB
testcase_24 AC 133 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);
        double x = Double.valueOf(sc.nextLine());
        double y = Double.valueOf(sc.nextLine());
        double l = Double.valueOf(sc.nextLine());

        int operationNum = 0;
        if(y<0) {
        	operationNum += 2;
        } else if(x != 0) {
        	operationNum += 1;
        }

        operationNum += (int) Math.ceil(Math.abs(x/l));
        operationNum += (int) Math.ceil(Math.abs(y/l));
        System.out.println(operationNum);
	}
}
0