結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
39,880 KB
testcase_01 AC 95 ms
39,700 KB
testcase_02 WA -
testcase_03 AC 113 ms
40,888 KB
testcase_04 AC 110 ms
41,348 KB
testcase_05 AC 108 ms
41,200 KB
testcase_06 AC 99 ms
39,880 KB
testcase_07 AC 108 ms
39,956 KB
testcase_08 AC 120 ms
41,128 KB
testcase_09 AC 113 ms
41,420 KB
testcase_10 AC 98 ms
40,048 KB
testcase_11 AC 111 ms
41,120 KB
testcase_12 AC 112 ms
41,116 KB
testcase_13 AC 113 ms
41,048 KB
testcase_14 AC 115 ms
41,012 KB
testcase_15 AC 119 ms
40,868 KB
testcase_16 AC 115 ms
41,160 KB
testcase_17 AC 116 ms
41,008 KB
testcase_18 AC 118 ms
41,236 KB
testcase_19 AC 109 ms
41,144 KB
testcase_20 AC 108 ms
40,980 KB
testcase_21 AC 102 ms
39,936 KB
testcase_22 AC 111 ms
41,632 KB
testcase_23 AC 120 ms
41,316 KB
testcase_24 AC 123 ms
41,164 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);
				if(X != 0){
					count += COUNT(X,L,count) + 1;
				}
		}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