結果

問題 No.48 ロボットの操縦
ユーザー mits58mits58
提出日時 2016-07-02 20:30:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 2,580 ms
コンパイル使用メモリ 73,708 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-10-12 01:16:30
合計ジャッジ時間 6,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,300 KB
testcase_01 AC 134 ms
41,084 KB
testcase_02 WA -
testcase_03 AC 134 ms
41,080 KB
testcase_04 AC 133 ms
41,084 KB
testcase_05 AC 136 ms
40,968 KB
testcase_06 AC 134 ms
40,900 KB
testcase_07 AC 134 ms
41,068 KB
testcase_08 AC 132 ms
41,096 KB
testcase_09 AC 135 ms
41,344 KB
testcase_10 AC 136 ms
41,084 KB
testcase_11 AC 134 ms
41,364 KB
testcase_12 AC 134 ms
41,128 KB
testcase_13 AC 131 ms
41,160 KB
testcase_14 AC 132 ms
41,216 KB
testcase_15 AC 130 ms
41,012 KB
testcase_16 AC 132 ms
40,668 KB
testcase_17 AC 134 ms
40,996 KB
testcase_18 AC 131 ms
41,012 KB
testcase_19 AC 133 ms
41,116 KB
testcase_20 AC 132 ms
41,500 KB
testcase_21 AC 132 ms
41,288 KB
testcase_22 AC 123 ms
39,864 KB
testcase_23 AC 132 ms
40,984 KB
testcase_24 AC 133 ms
40,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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