結果

問題 No.48 ロボットの操縦
ユーザー dogwood0424dogwood0424
提出日時 2017-12-01 12:42:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,225 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 4,059 ms
コンパイル使用メモリ 77,640 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-05-05 20:27:07
合計ジャッジ時間 8,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,084 KB
testcase_01 AC 116 ms
41,212 KB
testcase_02 AC 118 ms
40,972 KB
testcase_03 AC 1,225 ms
40,464 KB
testcase_04 AC 111 ms
41,084 KB
testcase_05 AC 111 ms
41,280 KB
testcase_06 AC 116 ms
41,116 KB
testcase_07 AC 106 ms
40,228 KB
testcase_08 AC 117 ms
41,084 KB
testcase_09 AC 115 ms
40,996 KB
testcase_10 AC 121 ms
41,308 KB
testcase_11 AC 118 ms
41,484 KB
testcase_12 AC 108 ms
40,272 KB
testcase_13 AC 108 ms
40,228 KB
testcase_14 AC 119 ms
41,048 KB
testcase_15 AC 115 ms
40,796 KB
testcase_16 AC 103 ms
40,100 KB
testcase_17 AC 117 ms
41,476 KB
testcase_18 AC 115 ms
41,100 KB
testcase_19 AC 111 ms
41,228 KB
testcase_20 AC 111 ms
41,268 KB
testcase_21 AC 113 ms
41,036 KB
testcase_22 AC 115 ms
41,336 KB
testcase_23 AC 100 ms
40,084 KB
testcase_24 AC 103 ms
40,148 KB
権限があれば一括ダウンロードができます

ソースコード

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

		System.out.println(cnt);


	}

}
0