結果

問題 No.48 ロボットの操縦
ユーザー ieneko18ieneko18
提出日時 2016-11-28 15:14:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 37,172 KB
最終ジャッジ日時 2024-05-05 14:36:43
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
37,032 KB
testcase_01 AC 43 ms
36,692 KB
testcase_02 AC 45 ms
36,864 KB
testcase_03 AC 44 ms
36,940 KB
testcase_04 AC 43 ms
37,044 KB
testcase_05 AC 42 ms
36,804 KB
testcase_06 AC 44 ms
36,600 KB
testcase_07 AC 44 ms
36,980 KB
testcase_08 AC 44 ms
37,048 KB
testcase_09 AC 45 ms
36,972 KB
testcase_10 AC 43 ms
36,904 KB
testcase_11 AC 44 ms
36,812 KB
testcase_12 AC 44 ms
36,864 KB
testcase_13 AC 44 ms
36,756 KB
testcase_14 AC 44 ms
36,916 KB
testcase_15 AC 43 ms
36,916 KB
testcase_16 AC 44 ms
36,916 KB
testcase_17 AC 45 ms
36,852 KB
testcase_18 AC 45 ms
36,916 KB
testcase_19 AC 43 ms
37,172 KB
testcase_20 AC 41 ms
36,692 KB
testcase_21 AC 42 ms
37,120 KB
testcase_22 AC 42 ms
37,044 KB
testcase_23 AC 51 ms
36,928 KB
testcase_24 AC 45 ms
37,044 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 n=y<0?2:x!=0?1:0;
		System.out.println((Math.abs(x)+l-1)/l+(Math.abs(y)+l-1)/l+n);
	}
}
0