結果

問題 No.48 ロボットの操縦
ユーザー scachescache
提出日時 2014-11-30 23:42:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 3,097 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 52,276 KB
最終ジャッジ日時 2024-11-21 18:13:44
合計ジャッジ時間 7,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
52,276 KB
testcase_01 AC 126 ms
52,028 KB
testcase_02 AC 112 ms
50,640 KB
testcase_03 AC 119 ms
52,056 KB
testcase_04 AC 122 ms
51,736 KB
testcase_05 AC 113 ms
50,864 KB
testcase_06 AC 120 ms
51,496 KB
testcase_07 AC 112 ms
50,876 KB
testcase_08 AC 123 ms
51,976 KB
testcase_09 AC 112 ms
50,500 KB
testcase_10 AC 123 ms
52,152 KB
testcase_11 AC 112 ms
50,516 KB
testcase_12 AC 124 ms
52,036 KB
testcase_13 AC 122 ms
51,888 KB
testcase_14 AC 124 ms
51,924 KB
testcase_15 AC 124 ms
51,776 KB
testcase_16 AC 126 ms
51,680 KB
testcase_17 AC 125 ms
52,036 KB
testcase_18 AC 112 ms
50,740 KB
testcase_19 AC 124 ms
52,020 KB
testcase_20 AC 124 ms
52,076 KB
testcase_21 AC 117 ms
51,248 KB
testcase_22 AC 124 ms
51,956 KB
testcase_23 AC 124 ms
51,816 KB
testcase_24 AC 115 ms
52,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main48 {
	public static void main(String[] args) {
		Main48 p = new Main48();
	}

	public Main48() {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		int l = sc.nextInt();
		solve(x, y, l);
	}

	public void solve(int x, int y, int l) {
		int res = x!=0 ? (Math.abs(x)-1)/l + 1 : 0;
		res += y!=0 ? (Math.abs(y)-1)/l + 1 : 0;
		
		if(y<0)
			res+=2;
		else if(Math.abs(x)>0)
			res++;
		
		System.out.println(res);
	}

}
0