結果

問題 No.48 ロボットの操縦
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-09 23:07:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 56,252 KB
最終ジャッジ日時 2024-06-26 20:50:01
合計ジャッジ時間 6,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,336 KB
testcase_01 AC 131 ms
54,076 KB
testcase_02 WA -
testcase_03 AC 132 ms
54,212 KB
testcase_04 WA -
testcase_05 AC 133 ms
54,076 KB
testcase_06 AC 133 ms
54,088 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 134 ms
54,384 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 130 ms
53,972 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 126 ms
54,096 KB
testcase_17 AC 132 ms
53,988 KB
testcase_18 AC 131 ms
54,092 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 129 ms
54,048 KB
testcase_23 AC 136 ms
54,216 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No48 {

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

		int changeInDirection = 0;
		if (X > 0 || X < 0) {
			changeInDirection++;
			if (Y < 0) {
				changeInDirection++;
			}
		} else if (Y < 0) {
			changeInDirection++;
		}

		changeInDirection += (Math.abs(X) + Math.abs(Y)) / L;
		if (!((Math.abs(X) + Math.abs(Y)) % L == 0)) {
			changeInDirection++;
		}
		System.out.println(changeInDirection);
	}

}
0