結果

問題 No.48 ロボットの操縦
ユーザー soujikisoujiki
提出日時 2015-04-27 15:49:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 872 bytes
コンパイル時間 3,158 ms
コンパイル使用メモリ 77,452 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-11-21 18:18:09
合計ジャッジ時間 7,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,608 KB
testcase_01 AC 126 ms
41,264 KB
testcase_02 AC 127 ms
41,176 KB
testcase_03 AC 127 ms
41,440 KB
testcase_04 AC 123 ms
41,092 KB
testcase_05 AC 124 ms
41,512 KB
testcase_06 AC 115 ms
41,304 KB
testcase_07 AC 122 ms
40,020 KB
testcase_08 AC 128 ms
41,220 KB
testcase_09 AC 113 ms
41,484 KB
testcase_10 AC 123 ms
39,832 KB
testcase_11 AC 113 ms
41,072 KB
testcase_12 AC 124 ms
41,284 KB
testcase_13 AC 127 ms
41,612 KB
testcase_14 AC 121 ms
41,216 KB
testcase_15 AC 120 ms
41,168 KB
testcase_16 AC 127 ms
41,264 KB
testcase_17 AC 118 ms
41,408 KB
testcase_18 AC 128 ms
40,848 KB
testcase_19 AC 124 ms
41,500 KB
testcase_20 AC 123 ms
40,984 KB
testcase_21 AC 112 ms
41,356 KB
testcase_22 AC 112 ms
41,212 KB
testcase_23 AC 123 ms
41,212 KB
testcase_24 AC 124 ms
41,756 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