結果

問題 No.48 ロボットの操縦
ユーザー jimanojimano
提出日時 2018-01-07 17:19:48
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 4,283 ms
コンパイル使用メモリ 75,880 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-12-23 10:10:12
合計ジャッジ時間 8,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,292 KB
testcase_01 AC 141 ms
41,028 KB
testcase_02 AC 146 ms
41,184 KB
testcase_03 AC 147 ms
41,208 KB
testcase_04 AC 142 ms
41,240 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 143 ms
40,988 KB
testcase_08 AC 143 ms
41,276 KB
testcase_09 AC 144 ms
41,384 KB
testcase_10 AC 146 ms
41,052 KB
testcase_11 AC 148 ms
41,540 KB
testcase_12 AC 146 ms
41,368 KB
testcase_13 AC 142 ms
41,244 KB
testcase_14 AC 128 ms
39,852 KB
testcase_15 AC 146 ms
41,468 KB
testcase_16 AC 146 ms
41,100 KB
testcase_17 AC 150 ms
41,120 KB
testcase_18 AC 148 ms
41,488 KB
testcase_19 AC 144 ms
41,500 KB
testcase_20 AC 149 ms
40,932 KB
testcase_21 AC 146 ms
41,292 KB
testcase_22 AC 145 ms
41,108 KB
testcase_23 AC 147 ms
41,380 KB
testcase_24 AC 148 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No0048 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int X = sc.nextInt();
		int Y = sc.nextInt();
		int L = sc.nextInt();

		System.out.println(turnCount(X, Y) + aheadCount(X, Y, L));
	}

	static int turnCount(int x, int y) {
		if (y > 0) {
			if (x == 0) {
				return 0;
			}
			return 1;
		} else {
			return 2;
		}
	}

	static int aheadCount(int x, int y, int l) {
		int cnt = (Math.abs(x) / l) + (Math.abs(y) / l);
		if (x % l != 0) {
			cnt++;
		}
		if (y % l != 0) {
			cnt++;
		}
		return cnt;
	}
}
0