結果

問題 No.48 ロボットの操縦
ユーザー HaleakalaHaleakala
提出日時 2018-02-24 16:53:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 4,193 ms
コンパイル使用メモリ 75,508 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-10-14 14:44:47
合計ジャッジ時間 8,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,832 KB
testcase_01 AC 133 ms
53,996 KB
testcase_02 AC 137 ms
54,040 KB
testcase_03 WA -
testcase_04 AC 134 ms
53,900 KB
testcase_05 AC 134 ms
54,248 KB
testcase_06 AC 136 ms
54,016 KB
testcase_07 AC 136 ms
53,888 KB
testcase_08 WA -
testcase_09 AC 135 ms
54,184 KB
testcase_10 WA -
testcase_11 AC 134 ms
53,876 KB
testcase_12 AC 137 ms
53,988 KB
testcase_13 AC 133 ms
54,004 KB
testcase_14 AC 140 ms
54,256 KB
testcase_15 AC 134 ms
53,748 KB
testcase_16 AC 135 ms
54,060 KB
testcase_17 AC 132 ms
53,948 KB
testcase_18 WA -
testcase_19 AC 135 ms
54,140 KB
testcase_20 AC 134 ms
54,032 KB
testcase_21 AC 130 ms
54,180 KB
testcase_22 WA -
testcase_23 AC 134 ms
54,184 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
        } if(x != 0) {
        	operationNum += 1;
        }

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