結果

問題 No.48 ロボットの操縦
ユーザー YOSHIYOSHI
提出日時 2021-02-25 22:44:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 73,640 KB
実行使用メモリ 37,116 KB
最終ジャッジ日時 2024-10-01 13:51:47
合計ジャッジ時間 5,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,956 KB
testcase_01 AC 52 ms
36,596 KB
testcase_02 AC 51 ms
36,948 KB
testcase_03 AC 51 ms
37,008 KB
testcase_04 AC 50 ms
36,640 KB
testcase_05 AC 50 ms
36,840 KB
testcase_06 AC 51 ms
36,620 KB
testcase_07 AC 52 ms
36,944 KB
testcase_08 AC 52 ms
36,604 KB
testcase_09 AC 50 ms
36,832 KB
testcase_10 AC 48 ms
36,504 KB
testcase_11 AC 52 ms
36,776 KB
testcase_12 AC 51 ms
36,848 KB
testcase_13 AC 50 ms
37,116 KB
testcase_14 AC 53 ms
36,932 KB
testcase_15 AC 51 ms
36,992 KB
testcase_16 AC 51 ms
37,028 KB
testcase_17 AC 51 ms
37,080 KB
testcase_18 AC 51 ms
37,040 KB
testcase_19 AC 51 ms
36,952 KB
testcase_20 AC 51 ms
36,828 KB
testcase_21 AC 51 ms
36,952 KB
testcase_22 AC 50 ms
36,500 KB
testcase_23 AC 51 ms
36,596 KB
testcase_24 AC 51 ms
37,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000048_Main2 {

	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 cnt = 0;
		if(x != 0 || y != 0) {
			if(y >= 0) {
				if(x != 0) {
					cnt += 1;
				}
			} else {
				cnt += 2;
			}
			cnt += (Math.abs(x) / l) + (Math.abs(x) % l == 0 ? 0 : 1);
			cnt += (Math.abs(y) / l) + (Math.abs(y) % l == 0 ? 0 : 1);
		}

		System.out.println(cnt);

	}

}
0