結果

問題 No.48 ロボットの操縦
ユーザー AoiroFukurouAoiroFukurou
提出日時 2014-12-21 17:54:47
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 3,980 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-06-12 03:13:38
合計ジャッジ時間 8,556 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,068 KB
testcase_01 AC 141 ms
41,304 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 142 ms
41,776 KB
testcase_05 AC 140 ms
41,308 KB
testcase_06 AC 143 ms
41,380 KB
testcase_07 AC 142 ms
41,204 KB
testcase_08 WA -
testcase_09 AC 149 ms
41,164 KB
testcase_10 WA -
testcase_11 AC 140 ms
41,432 KB
testcase_12 AC 142 ms
41,532 KB
testcase_13 AC 139 ms
41,300 KB
testcase_14 AC 139 ms
41,192 KB
testcase_15 AC 140 ms
41,316 KB
testcase_16 AC 142 ms
41,544 KB
testcase_17 AC 145 ms
41,324 KB
testcase_18 WA -
testcase_19 AC 145 ms
41,300 KB
testcase_20 AC 139 ms
41,560 KB
testcase_21 AC 143 ms
41,292 KB
testcase_22 WA -
testcase_23 AC 140 ms
41,376 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package benkyoukai;

import java.util.Scanner;


public class Robot {
public static void main(String[] args) {
	int x, y, l;
	int ans=0;
	Scanner sc = new Scanner(System.in);
	x = sc.nextInt();
	y = sc.nextInt();
	l = sc.nextInt();
	x=Math.abs(x);
	if(y==0){
		if(x==0){
			ans = 0;
		}else{
			ans = (x + l -1)/l+1;
		}
	
}
	if(y>0){
		ans = (y+l-1)/l;
		if(x!=0){
			ans +=1+(x+l-1)/l;
		}
			
		}
	if(y<0){
		ans = (y+l-1)/l;
		if(x==0){
			ans +=2;
		}else{
			ans +=(2+(x+l-1)/l);
		}
	}
	System.out.println(ans);
	}
}
0