結果

問題 No.48 ロボットの操縦
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 11:51:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 2,868 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-06 22:33:20
合計ジャッジ時間 6,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,056 KB
testcase_01 AC 111 ms
54,224 KB
testcase_02 WA -
testcase_03 AC 97 ms
52,968 KB
testcase_04 AC 107 ms
53,672 KB
testcase_05 AC 95 ms
52,944 KB
testcase_06 AC 108 ms
54,008 KB
testcase_07 AC 98 ms
52,948 KB
testcase_08 AC 114 ms
54,144 KB
testcase_09 AC 109 ms
53,964 KB
testcase_10 AC 114 ms
54,256 KB
testcase_11 AC 114 ms
54,164 KB
testcase_12 AC 96 ms
52,848 KB
testcase_13 AC 98 ms
52,812 KB
testcase_14 AC 110 ms
54,212 KB
testcase_15 AC 111 ms
54,124 KB
testcase_16 AC 112 ms
54,116 KB
testcase_17 AC 107 ms
53,864 KB
testcase_18 AC 111 ms
54,408 KB
testcase_19 AC 108 ms
53,400 KB
testcase_20 AC 109 ms
53,984 KB
testcase_21 AC 111 ms
54,044 KB
testcase_22 AC 100 ms
53,088 KB
testcase_23 AC 110 ms
53,916 KB
testcase_24 AC 112 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No48 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int X = sc.nextInt(); //x座標
		int Y = sc.nextInt(); //y座標
		int L = sc.nextInt(); //一度に動ける距離
		int count = 0; //命令した回数
		
		if(X % L == 0) {
			count += Math.abs(X) / L;
		}else {
			count += Math.abs(X) / L + 1;
		}
		
		if(Y % L == 0) {
			count += Math.abs(Y) / L;
		}else {
			count += Math.abs(Y) / L + 1;
		}
		
		if(X != 0 && Y >= 0) {
			count++;
		}else if(Y < 0 && X != 0) {
			count += 2;
		}
		
		System.out.println(count);
	}
}
0