結果

問題 No.48 ロボットの操縦
ユーザー scachescache
提出日時 2014-11-30 22:58:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 5,376 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-06-11 07:32:10
合計ジャッジ時間 6,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,028 KB
testcase_01 AC 102 ms
40,112 KB
testcase_02 WA -
testcase_03 AC 96 ms
39,816 KB
testcase_04 AC 99 ms
39,820 KB
testcase_05 AC 100 ms
39,988 KB
testcase_06 WA -
testcase_07 AC 111 ms
41,012 KB
testcase_08 AC 107 ms
40,964 KB
testcase_09 AC 107 ms
41,004 KB
testcase_10 AC 100 ms
40,112 KB
testcase_11 AC 107 ms
41,120 KB
testcase_12 AC 107 ms
41,064 KB
testcase_13 AC 108 ms
41,072 KB
testcase_14 AC 106 ms
40,936 KB
testcase_15 AC 94 ms
39,824 KB
testcase_16 AC 109 ms
40,800 KB
testcase_17 AC 106 ms
41,156 KB
testcase_18 AC 107 ms
41,332 KB
testcase_19 AC 109 ms
41,360 KB
testcase_20 AC 104 ms
41,048 KB
testcase_21 AC 98 ms
40,516 KB
testcase_22 AC 100 ms
40,256 KB
testcase_23 AC 96 ms
39,980 KB
testcase_24 AC 108 ms
41,404 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 = (Math.abs(x)-1)/l + 1 + (Math.abs(y)-1)/l + 1;
		if(y<0)
			res+=2;
		else if(Math.abs(x)>0)
			res++;
		
		System.out.println(res);
	}

}
0