結果

問題 No.48 ロボットの操縦
ユーザー jimanojimano
提出日時 2018-01-07 17:19:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 3,558 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 41,276 KB
最終ジャッジ日時 2024-06-02 13:05:29
合計ジャッジ時間 6,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,868 KB
testcase_01 AC 102 ms
39,892 KB
testcase_02 AC 111 ms
40,880 KB
testcase_03 AC 118 ms
41,044 KB
testcase_04 AC 109 ms
40,916 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 108 ms
40,788 KB
testcase_08 AC 100 ms
40,088 KB
testcase_09 AC 115 ms
40,712 KB
testcase_10 AC 122 ms
41,036 KB
testcase_11 AC 110 ms
40,044 KB
testcase_12 AC 102 ms
40,088 KB
testcase_13 AC 103 ms
40,300 KB
testcase_14 AC 99 ms
39,952 KB
testcase_15 AC 96 ms
39,836 KB
testcase_16 AC 110 ms
41,008 KB
testcase_17 AC 102 ms
40,152 KB
testcase_18 AC 108 ms
41,016 KB
testcase_19 AC 110 ms
40,804 KB
testcase_20 AC 97 ms
40,072 KB
testcase_21 AC 101 ms
40,088 KB
testcase_22 AC 111 ms
40,852 KB
testcase_23 AC 108 ms
39,780 KB
testcase_24 AC 106 ms
40,992 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