結果

問題 No.48 ロボットの操縦
ユーザー soujikisoujiki
提出日時 2015-04-27 15:45:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 847 bytes
コンパイル時間 3,503 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-07-05 04:53:27
合計ジャッジ時間 7,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,072 KB
testcase_01 AC 134 ms
41,100 KB
testcase_02 AC 133 ms
41,100 KB
testcase_03 WA -
testcase_04 AC 131 ms
40,864 KB
testcase_05 AC 129 ms
41,164 KB
testcase_06 AC 131 ms
41,216 KB
testcase_07 AC 117 ms
39,992 KB
testcase_08 AC 116 ms
40,004 KB
testcase_09 AC 129 ms
41,036 KB
testcase_10 AC 132 ms
41,176 KB
testcase_11 AC 130 ms
41,012 KB
testcase_12 AC 130 ms
41,008 KB
testcase_13 AC 128 ms
40,988 KB
testcase_14 AC 130 ms
41,200 KB
testcase_15 AC 127 ms
41,144 KB
testcase_16 AC 126 ms
41,344 KB
testcase_17 AC 128 ms
41,032 KB
testcase_18 AC 114 ms
40,292 KB
testcase_19 AC 113 ms
40,220 KB
testcase_20 AC 126 ms
41,128 KB
testcase_21 AC 127 ms
41,108 KB
testcase_22 AC 128 ms
41,020 KB
testcase_23 AC 126 ms
41,112 KB
testcase_24 AC 119 ms
40,892 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++;
			}

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

			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