結果

問題 No.48 ロボットの操縦
ユーザー jimanojimano
提出日時 2018-01-07 17:26:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 3,273 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-06-02 13:06:14
合計ジャッジ時間 7,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,956 KB
testcase_01 AC 104 ms
39,968 KB
testcase_02 AC 96 ms
39,832 KB
testcase_03 AC 105 ms
40,784 KB
testcase_04 AC 103 ms
39,892 KB
testcase_05 AC 100 ms
40,068 KB
testcase_06 AC 111 ms
41,064 KB
testcase_07 AC 113 ms
40,872 KB
testcase_08 AC 101 ms
39,964 KB
testcase_09 AC 105 ms
40,328 KB
testcase_10 AC 109 ms
41,052 KB
testcase_11 AC 115 ms
40,964 KB
testcase_12 AC 112 ms
40,404 KB
testcase_13 AC 113 ms
40,760 KB
testcase_14 AC 118 ms
41,224 KB
testcase_15 AC 114 ms
40,816 KB
testcase_16 AC 115 ms
40,928 KB
testcase_17 AC 112 ms
40,984 KB
testcase_18 AC 121 ms
41,024 KB
testcase_19 AC 120 ms
41,236 KB
testcase_20 AC 118 ms
41,312 KB
testcase_21 AC 102 ms
40,032 KB
testcase_22 AC 103 ms
39,608 KB
testcase_23 AC 103 ms
40,088 KB
testcase_24 AC 100 ms
39,832 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