結果

問題 No.48 ロボットの操縦
ユーザー jimanojimano
提出日時 2018-01-07 17:26:32
言語 Java
(openjdk 23)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 3,699 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-12-23 10:11:07
合計ジャッジ時間 8,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,472 KB
testcase_01 AC 144 ms
41,112 KB
testcase_02 AC 146 ms
41,476 KB
testcase_03 AC 147 ms
41,212 KB
testcase_04 AC 144 ms
41,128 KB
testcase_05 AC 146 ms
41,476 KB
testcase_06 AC 154 ms
41,220 KB
testcase_07 AC 146 ms
41,472 KB
testcase_08 AC 142 ms
41,240 KB
testcase_09 AC 145 ms
41,360 KB
testcase_10 AC 140 ms
41,612 KB
testcase_11 AC 148 ms
41,532 KB
testcase_12 AC 145 ms
41,044 KB
testcase_13 AC 145 ms
41,252 KB
testcase_14 AC 144 ms
41,200 KB
testcase_15 AC 144 ms
41,500 KB
testcase_16 AC 143 ms
41,144 KB
testcase_17 AC 141 ms
41,140 KB
testcase_18 AC 141 ms
41,420 KB
testcase_19 AC 142 ms
41,392 KB
testcase_20 AC 141 ms
41,552 KB
testcase_21 AC 144 ms
41,360 KB
testcase_22 AC 140 ms
41,172 KB
testcase_23 AC 147 ms
41,224 KB
testcase_24 AC 141 ms
41,140 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, L) + aheadCount(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 l) {
		int cnt = (Math.abs(x) / l);
		if (x % l != 0) {
			cnt++;
		}
		return cnt;
	}
}
0