結果

問題 No.48 ロボットの操縦
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 21:05:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 74,076 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-07-04 19:32:23
合計ジャッジ時間 6,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,080 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 104 ms
40,172 KB
testcase_04 WA -
testcase_05 AC 100 ms
40,220 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 97 ms
39,880 KB
testcase_09 WA -
testcase_10 AC 111 ms
41,464 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 101 ms
40,184 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 119 ms
41,124 KB
testcase_23 WA -
testcase_24 AC 104 ms
40,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Robo {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int X = s.nextInt(), Y = s.nextInt(), L = s.nextInt(), count = 0;
		s.close();
		if(Y >= 0){
				count += COUNT(Y, L, count);
		}else{
			if(X != 0){
				count += COUNT(X,L,count) + 1;
				count += COUNT(Y,L,count) + 1;
			}
			
		}
		System.out.println(count);

	}
	
	static int COUNT(int p,int k, int count){
		if(p%k == 0){
			count = Math.abs(p/k);
		}else{
			count = Math.abs(p/k) + 1;
		}
		return count;
	}

}
0