結果

問題 No.48 ロボットの操縦
ユーザー kazapyon27kazapyon27
提出日時 2017-05-13 10:36:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 991 bytes
コンパイル時間 3,721 ms
コンパイル使用メモリ 77,680 KB
実行使用メモリ 53,804 KB
最終ジャッジ日時 2024-09-15 12:14:36
合計ジャッジ時間 7,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,996 KB
testcase_01 AC 132 ms
41,180 KB
testcase_02 WA -
testcase_03 AC 133 ms
41,092 KB
testcase_04 AC 132 ms
40,868 KB
testcase_05 AC 130 ms
40,824 KB
testcase_06 AC 121 ms
41,140 KB
testcase_07 AC 124 ms
41,172 KB
testcase_08 AC 131 ms
41,116 KB
testcase_09 AC 129 ms
41,172 KB
testcase_10 AC 129 ms
40,984 KB
testcase_11 AC 133 ms
40,992 KB
testcase_12 AC 130 ms
41,164 KB
testcase_13 AC 133 ms
40,840 KB
testcase_14 AC 117 ms
40,012 KB
testcase_15 AC 127 ms
40,944 KB
testcase_16 AC 117 ms
40,040 KB
testcase_17 AC 117 ms
39,704 KB
testcase_18 AC 132 ms
41,260 KB
testcase_19 AC 128 ms
41,228 KB
testcase_20 AC 130 ms
40,952 KB
testcase_21 AC 137 ms
41,004 KB
testcase_22 AC 131 ms
40,784 KB
testcase_23 AC 128 ms
40,924 KB
testcase_24 AC 129 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.48 ロボットの操縦*/
import java.util.*;
public class No48 {
	static int Order=0;
	static int walk(int TargetPoint,int WalkSpec){
		int work=Math.abs(TargetPoint);
		if(TargetPoint%WalkSpec==0){
			Order+=work/WalkSpec;
			return TargetPoint/WalkSpec;
		}else{
			work/=WalkSpec;
			Order+=work+1;
			return work*WalkSpec+Math.abs(TargetPoint%WalkSpec);	
		}
	}
	public static void main(String[] args) {
		int TargetX,TargetY,WalkSpec,CurrentX=0,CurrentY=0;
		try(Scanner input = new Scanner((System.in))){
			TargetX=input.nextInt();
			TargetY=input.nextInt();
			WalkSpec=input.nextInt();
			if(TargetY<=0){
				if(TargetX!=0)
					Order++;
					CurrentX=walk(TargetX,WalkSpec);
				if(TargetY!=0){
					Order++;
					CurrentY=walk(TargetY,WalkSpec);					
				}
			}else{
				CurrentY=walk(TargetY,WalkSpec);
				if(TargetX!=0){
					Order++;
					CurrentX=walk(TargetX,WalkSpec);
				}
			}
			System.out.println(Order);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0