結果

問題 No.48 ロボットの操縦
ユーザー dogwood0424dogwood0424
提出日時 2017-12-01 12:38:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 3,808 ms
コンパイル使用メモリ 77,628 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-05-05 20:26:57
合計ジャッジ時間 9,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 121 ms
41,308 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 122 ms
41,000 KB
testcase_05 WA -
testcase_06 AC 119 ms
41,332 KB
testcase_07 AC 119 ms
41,192 KB
testcase_08 WA -
testcase_09 AC 116 ms
40,936 KB
testcase_10 WA -
testcase_11 AC 111 ms
40,964 KB
testcase_12 AC 114 ms
40,604 KB
testcase_13 AC 114 ms
41,016 KB
testcase_14 AC 128 ms
41,228 KB
testcase_15 AC 125 ms
41,260 KB
testcase_16 AC 119 ms
41,220 KB
testcase_17 AC 106 ms
39,848 KB
testcase_18 WA -
testcase_19 AC 111 ms
41,060 KB
testcase_20 AC 112 ms
41,284 KB
testcase_21 AC 112 ms
41,156 KB
testcase_22 WA -
testcase_23 AC 117 ms
40,948 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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 {
				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++;
				while(X>0) {
					X=X-L;
					cnt++;
				}
			}
			else {
				cnt++;
				X=(-1)*X;
				while(X>0) {
					X=X-L;
					cnt++;
				}
			}
		}

		System.out.println(cnt);


	}

}
0