結果

問題 No.48 ロボットの操縦
ユーザー dogwood0424dogwood0424
提出日時 2017-12-01 12:38:02
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 3,289 ms
コンパイル使用メモリ 77,032 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-11-27 21:26:34
合計ジャッジ時間 8,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 105 ms
40,192 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 114 ms
41,164 KB
testcase_05 WA -
testcase_06 AC 116 ms
41,152 KB
testcase_07 AC 119 ms
41,332 KB
testcase_08 WA -
testcase_09 AC 103 ms
40,140 KB
testcase_10 WA -
testcase_11 AC 100 ms
40,328 KB
testcase_12 AC 114 ms
41,344 KB
testcase_13 AC 106 ms
40,108 KB
testcase_14 AC 117 ms
41,156 KB
testcase_15 AC 110 ms
40,328 KB
testcase_16 AC 118 ms
41,108 KB
testcase_17 AC 102 ms
40,112 KB
testcase_18 WA -
testcase_19 AC 110 ms
41,244 KB
testcase_20 AC 101 ms
40,160 KB
testcase_21 AC 115 ms
41,152 KB
testcase_22 WA -
testcase_23 AC 113 ms
41,212 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