結果

問題 No.48 ロボットの操縦
ユーザー k_kadorak_kadora
提出日時 2015-05-21 10:51:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 3,806 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-11-21 18:20:28
合計ジャッジ時間 7,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,260 KB
testcase_01 AC 111 ms
41,468 KB
testcase_02 AC 119 ms
41,360 KB
testcase_03 AC 121 ms
41,408 KB
testcase_04 AC 115 ms
41,736 KB
testcase_05 AC 110 ms
40,852 KB
testcase_06 AC 107 ms
40,160 KB
testcase_07 AC 116 ms
40,884 KB
testcase_08 AC 105 ms
40,388 KB
testcase_09 AC 100 ms
40,024 KB
testcase_10 AC 108 ms
40,140 KB
testcase_11 AC 114 ms
40,900 KB
testcase_12 AC 114 ms
41,216 KB
testcase_13 AC 116 ms
41,012 KB
testcase_14 AC 118 ms
41,336 KB
testcase_15 AC 132 ms
40,956 KB
testcase_16 AC 109 ms
39,908 KB
testcase_17 AC 106 ms
40,152 KB
testcase_18 AC 117 ms
41,188 KB
testcase_19 AC 123 ms
41,376 KB
testcase_20 AC 102 ms
40,188 KB
testcase_21 AC 120 ms
41,112 KB
testcase_22 AC 107 ms
39,852 KB
testcase_23 AC 116 ms
41,244 KB
testcase_24 AC 114 ms
41,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Robot{
	public static void main(String[] arg){
		int x,y,l,res=0;
		Scanner sc = new Scanner(System.in);
		x = sc.nextInt();
		y = sc.nextInt();
		l = sc.nextInt();
		if(y>= 0 && x != 0){
			res++;
		}else if(y<0){
			res = res+2;
		}
		if((x != 0) && (Math.abs(x)%l == 0)){
			res = res + (Math.abs(x)/l);
		}else if (x != 0){
			res = res + (Math.abs(x)/l)+1;
		}
		if((y != 0) && (Math.abs(y) % l == 0)){
			res = res + (Math.abs(y)/l);
		}else if (y != 0){
			res = res + (Math.abs(y)/l)+1;
		}
		System.out.println(res);
	}
}
0