結果

問題 No.48 ロボットの操縦
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 20:59:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 3,115 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-07-04 19:31:56
合計ジャッジ時間 7,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,416 KB
testcase_01 AC 121 ms
40,932 KB
testcase_02 AC 124 ms
41,128 KB
testcase_03 WA -
testcase_04 AC 129 ms
41,092 KB
testcase_05 AC 123 ms
41,248 KB
testcase_06 AC 108 ms
40,168 KB
testcase_07 AC 123 ms
41,288 KB
testcase_08 WA -
testcase_09 AC 123 ms
41,296 KB
testcase_10 WA -
testcase_11 AC 148 ms
41,240 KB
testcase_12 AC 119 ms
41,376 KB
testcase_13 AC 126 ms
41,204 KB
testcase_14 AC 125 ms
41,580 KB
testcase_15 AC 122 ms
41,088 KB
testcase_16 AC 121 ms
41,200 KB
testcase_17 AC 126 ms
41,176 KB
testcase_18 WA -
testcase_19 AC 126 ms
41,408 KB
testcase_20 AC 108 ms
40,168 KB
testcase_21 AC 119 ms
41,104 KB
testcase_22 WA -
testcase_23 AC 116 ms
41,464 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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{
			count += 2;
			count += COUNT(Y,L,count);
			
		}
		if(X != 0)
			count += COUNT(X,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