結果

問題 No.48 ロボットの操縦
ユーザー jimanojimano
提出日時 2018-01-07 17:22:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 586 bytes
コンパイル時間 2,994 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-06-02 13:05:38
合計ジャッジ時間 6,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,596 KB
testcase_01 AC 100 ms
39,404 KB
testcase_02 AC 102 ms
39,824 KB
testcase_03 AC 115 ms
40,912 KB
testcase_04 AC 104 ms
40,140 KB
testcase_05 AC 112 ms
41,180 KB
testcase_06 AC 120 ms
40,964 KB
testcase_07 AC 106 ms
40,064 KB
testcase_08 AC 115 ms
40,820 KB
testcase_09 AC 106 ms
40,124 KB
testcase_10 AC 113 ms
40,844 KB
testcase_11 AC 105 ms
39,868 KB
testcase_12 AC 104 ms
40,128 KB
testcase_13 AC 118 ms
41,216 KB
testcase_14 AC 108 ms
39,588 KB
testcase_15 AC 119 ms
41,040 KB
testcase_16 AC 113 ms
41,032 KB
testcase_17 AC 112 ms
40,912 KB
testcase_18 AC 104 ms
40,124 KB
testcase_19 AC 119 ms
40,752 KB
testcase_20 AC 113 ms
40,244 KB
testcase_21 AC 112 ms
41,120 KB
testcase_22 AC 109 ms
40,056 KB
testcase_23 AC 112 ms
40,788 KB
testcase_24 AC 107 ms
40,568 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