結果

問題 No.48 ロボットの操縦
ユーザー yuuki121yuuki121
提出日時 2021-01-05 23:37:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 2,718 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 50,448 KB
最終ジャッジ日時 2024-11-06 08:38:11
合計ジャッジ時間 4,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,412 KB
testcase_01 AC 55 ms
50,216 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 55 ms
50,116 KB
testcase_05 AC 55 ms
50,040 KB
testcase_06 WA -
testcase_07 AC 54 ms
50,304 KB
testcase_08 WA -
testcase_09 AC 56 ms
50,108 KB
testcase_10 WA -
testcase_11 AC 55 ms
50,372 KB
testcase_12 AC 54 ms
50,012 KB
testcase_13 AC 55 ms
50,080 KB
testcase_14 AC 55 ms
49,992 KB
testcase_15 AC 56 ms
50,132 KB
testcase_16 AC 56 ms
50,316 KB
testcase_17 AC 55 ms
50,324 KB
testcase_18 WA -
testcase_19 AC 55 ms
50,264 KB
testcase_20 AC 55 ms
50,392 KB
testcase_21 AC 56 ms
50,448 KB
testcase_22 WA -
testcase_23 AC 55 ms
50,376 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = Math.abs(Integer.parseInt(br.readLine()));
		int y = Math.abs(Integer.parseInt(br.readLine()));
		int l = Integer.parseInt(br.readLine());

		int xl = (x + l - 1) / l;
		int yl = (y + l - 1) / l;
		System.out.println((xl > 0 && yl > 0) ? xl + yl + 1 : xl + yl);

	}

}
0