結果

問題 No.48 ロボットの操縦
ユーザー yuuki121yuuki121
提出日時 2021-01-05 23:54:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 50,328 KB
最終ジャッジ日時 2024-11-06 08:39:46
合計ジャッジ時間 4,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,320 KB
testcase_01 AC 56 ms
50,124 KB
testcase_02 AC 57 ms
50,308 KB
testcase_03 AC 59 ms
50,184 KB
testcase_04 AC 57 ms
49,816 KB
testcase_05 AC 58 ms
50,212 KB
testcase_06 AC 58 ms
49,896 KB
testcase_07 AC 56 ms
50,000 KB
testcase_08 AC 57 ms
50,280 KB
testcase_09 AC 56 ms
50,188 KB
testcase_10 AC 56 ms
50,244 KB
testcase_11 AC 57 ms
50,208 KB
testcase_12 AC 57 ms
50,160 KB
testcase_13 AC 56 ms
50,236 KB
testcase_14 AC 56 ms
50,244 KB
testcase_15 AC 56 ms
50,328 KB
testcase_16 AC 56 ms
49,908 KB
testcase_17 AC 56 ms
50,144 KB
testcase_18 AC 57 ms
50,016 KB
testcase_19 AC 55 ms
50,128 KB
testcase_20 AC 56 ms
50,168 KB
testcase_21 AC 56 ms
50,292 KB
testcase_22 AC 57 ms
50,224 KB
testcase_23 AC 56 ms
49,908 KB
testcase_24 AC 58 ms
50,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int x = Integer.parseInt(br.readLine());
		int y = Integer.parseInt(br.readLine());
		int l = Integer.parseInt(br.readLine());

		int xl = (Math.abs(x) + l - 1) / l;
		int yl = (Math.abs(y) + l - 1) / l;

		int sum = 0;

		if (y >= 0) {
			if (x == 0) {
				sum = xl + yl;
			} else {
				sum = xl + yl + 1;
			}
		} else {
			sum = xl + yl + 2;
		}

		System.out.println(sum);

	}

}
0