結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,056 KB
testcase_01 AC 46 ms
37,068 KB
testcase_02 AC 47 ms
36,912 KB
testcase_03 AC 46 ms
37,236 KB
testcase_04 AC 46 ms
36,844 KB
testcase_05 AC 47 ms
36,972 KB
testcase_06 AC 49 ms
37,240 KB
testcase_07 AC 47 ms
37,204 KB
testcase_08 AC 47 ms
36,712 KB
testcase_09 AC 48 ms
37,068 KB
testcase_10 AC 47 ms
37,136 KB
testcase_11 AC 46 ms
37,220 KB
testcase_12 AC 43 ms
37,204 KB
testcase_13 AC 47 ms
37,152 KB
testcase_14 AC 46 ms
37,128 KB
testcase_15 AC 48 ms
37,024 KB
testcase_16 AC 47 ms
37,136 KB
testcase_17 AC 50 ms
37,272 KB
testcase_18 AC 46 ms
37,368 KB
testcase_19 AC 45 ms
36,996 KB
testcase_20 AC 46 ms
37,240 KB
testcase_21 AC 48 ms
37,240 KB
testcase_22 AC 46 ms
36,808 KB
testcase_23 AC 46 ms
37,220 KB
testcase_24 AC 45 ms
36,940 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=0;
		if(y<0)n=2;
		else if(x!=0)n=1;
		System.out.println((Math.abs(x)+l-1)/l+(Math.abs(y)+l-1)/l+n);
	}
}
0