結果

問題 No.48 ロボットの操縦
ユーザー soujikisoujiki
提出日時 2015-04-27 15:49:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 872 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 77,428 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-05-01 13:35:44
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,296 KB
testcase_01 AC 117 ms
41,156 KB
testcase_02 AC 117 ms
41,420 KB
testcase_03 AC 110 ms
41,256 KB
testcase_04 AC 103 ms
41,244 KB
testcase_05 AC 98 ms
41,600 KB
testcase_06 AC 113 ms
41,448 KB
testcase_07 AC 103 ms
41,312 KB
testcase_08 AC 104 ms
40,192 KB
testcase_09 AC 117 ms
41,816 KB
testcase_10 AC 108 ms
41,244 KB
testcase_11 AC 116 ms
41,292 KB
testcase_12 AC 109 ms
41,120 KB
testcase_13 AC 119 ms
41,664 KB
testcase_14 AC 100 ms
41,448 KB
testcase_15 AC 116 ms
41,632 KB
testcase_16 AC 113 ms
41,592 KB
testcase_17 AC 121 ms
41,452 KB
testcase_18 AC 121 ms
41,764 KB
testcase_19 AC 118 ms
41,300 KB
testcase_20 AC 105 ms
41,700 KB
testcase_21 AC 119 ms
41,356 KB
testcase_22 AC 114 ms
41,320 KB
testcase_23 AC 117 ms
41,504 KB
testcase_24 AC 117 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

	
import java.util.*;

public class Yukicoder_48{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int X = stdIn.nextInt();
		int Y = stdIn.nextInt();
		int L = stdIn.nextInt();
		int count = 0;

		if(X==0 && Y==0){
			System.out.println("0");
		}
		else{
			if(X>0){
				count++;
				int x = X/L;
				count += x;
				X = X - x*L;
				if(X!=0){
					count++;
				}
				X++;

			}
			else if(X<0){
				count++;
				X = (-1)*X;
				int x = X/L;
				count += x;
				X = X - x*L;
				if(X!=0){
					count++;
				}
				X++;
			}

			if(Y>0){
				int y = Y/L;
				count += y;
				Y = Y - y*L;
				if(Y!=0){
					count++;
				}
			}
			else if(Y<0){
				if(X==0){
					count++;
				}
				count++;
				Y = (-1)*Y;
				int y = Y/L;
				count += y;
				Y = Y - y*L;
				if(Y!=0){
					count++;
				}
			}

			System.out.println(count);

		}

	}
}
0