結果

問題 No.48 ロボットの操縦
ユーザー kazapyon27kazapyon27
提出日時 2017-05-13 10:30:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 990 bytes
コンパイル時間 4,029 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-09-15 12:14:28
合計ジャッジ時間 8,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,992 KB
testcase_01 AC 128 ms
40,936 KB
testcase_02 AC 118 ms
40,108 KB
testcase_03 AC 125 ms
40,976 KB
testcase_04 AC 128 ms
40,880 KB
testcase_05 WA -
testcase_06 AC 123 ms
41,044 KB
testcase_07 AC 113 ms
39,912 KB
testcase_08 AC 128 ms
41,152 KB
testcase_09 AC 131 ms
41,136 KB
testcase_10 AC 134 ms
41,196 KB
testcase_11 AC 132 ms
41,024 KB
testcase_12 AC 132 ms
41,240 KB
testcase_13 AC 127 ms
41,316 KB
testcase_14 AC 113 ms
39,916 KB
testcase_15 AC 128 ms
41,052 KB
testcase_16 AC 124 ms
41,100 KB
testcase_17 AC 111 ms
40,092 KB
testcase_18 AC 114 ms
40,208 KB
testcase_19 AC 124 ms
41,180 KB
testcase_20 AC 127 ms
41,004 KB
testcase_21 AC 124 ms
41,184 KB
testcase_22 AC 126 ms
41,072 KB
testcase_23 AC 132 ms
40,948 KB
testcase_24 AC 126 ms
40,876 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){
				Order++;
				if(TargetX!=0)
					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