結果

問題 No.48 ロボットの操縦
ユーザー dogwood0424dogwood0424
提出日時 2017-12-01 12:42:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,245 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 6,174 ms
コンパイル使用メモリ 80,376 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-11-27 21:26:46
合計ジャッジ時間 9,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No48 {
	public static void main(String[]args) {
		Scanner sc =new Scanner(System.in);

		int X,Y,L,cnt;
		X = sc.nextInt();
		Y = sc.nextInt();
		L = sc.nextInt();
		cnt=0;

		if(Y>=0) {
			while(Y>0) {
				Y=Y-L;
				cnt++;
			}
			if(X>0) {
				cnt++;
				while(X>0) {
					X=X-L;
					cnt++;
				}
			}
			else if(X<0){
				cnt++;
				X=(-1)*X;
				while(X>0) {
					X=X-L;
					cnt++;
				}
			}
		}
		else {
			Y=(-1)*Y;
			while(Y>0) {
			Y=Y-L;
			cnt++;
		}
			if(X>0) {
				cnt+=2;
				while(X>0) {
					X=X-L;
					cnt++;
				}
			}
			else {
				cnt+=2;
				X=(-1)*X;
				while(X>0) {
					X=X-L;
					cnt++;
				}
			}
		}

		System.out.println(cnt);


	}

}
0