結果

問題 No.48 ロボットの操縦
ユーザー NoNo
提出日時 2017-08-01 21:21:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 73,152 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-10-11 00:17:53
合計ジャッジ時間 6,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,072 KB
testcase_01 AC 135 ms
40,796 KB
testcase_02 AC 147 ms
41,556 KB
testcase_03 AC 154 ms
41,560 KB
testcase_04 AC 150 ms
41,596 KB
testcase_05 AC 150 ms
41,544 KB
testcase_06 AC 151 ms
41,500 KB
testcase_07 AC 150 ms
41,552 KB
testcase_08 AC 148 ms
41,296 KB
testcase_09 AC 146 ms
41,420 KB
testcase_10 AC 147 ms
41,572 KB
testcase_11 AC 148 ms
41,280 KB
testcase_12 AC 149 ms
41,280 KB
testcase_13 AC 146 ms
41,432 KB
testcase_14 AC 146 ms
41,660 KB
testcase_15 AC 148 ms
41,584 KB
testcase_16 AC 144 ms
41,172 KB
testcase_17 AC 146 ms
41,164 KB
testcase_18 AC 134 ms
41,236 KB
testcase_19 AC 145 ms
41,624 KB
testcase_20 AC 149 ms
41,196 KB
testcase_21 AC 151 ms
41,320 KB
testcase_22 AC 150 ms
41,300 KB
testcase_23 AC 149 ms
41,292 KB
testcase_24 AC 138 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
    	Scanner sc = new Scanner(System.in);

    	int x = sc.nextInt();
    	int y = sc.nextInt();
    	double l = sc.nextDouble();
    	int ans = (int)(Math.ceil(Math.abs(x) / l) + Math.ceil(Math.abs(y) / l));
    	int n = 0;
    	if(y < 0)n = 2;
    	if(y >= 0 && x != 0)n = 1;
    	System.out.println(ans + n);
    }
}
0