結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 102 ms
40,168 KB
testcase_02 WA -
testcase_03 AC 112 ms
41,148 KB
testcase_04 AC 114 ms
41,088 KB
testcase_05 WA -
testcase_06 AC 111 ms
40,184 KB
testcase_07 AC 114 ms
41,088 KB
testcase_08 AC 119 ms
41,128 KB
testcase_09 AC 113 ms
41,120 KB
testcase_10 AC 109 ms
41,000 KB
testcase_11 AC 100 ms
40,156 KB
testcase_12 AC 115 ms
40,972 KB
testcase_13 AC 115 ms
41,116 KB
testcase_14 AC 114 ms
41,164 KB
testcase_15 AC 104 ms
39,988 KB
testcase_16 AC 117 ms
41,144 KB
testcase_17 AC 121 ms
41,288 KB
testcase_18 AC 118 ms
41,104 KB
testcase_19 AC 124 ms
41,164 KB
testcase_20 AC 119 ms
41,084 KB
testcase_21 AC 125 ms
41,168 KB
testcase_22 AC 112 ms
40,976 KB
testcase_23 AC 112 ms
40,980 KB
testcase_24 AC 106 ms
40,160 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);
				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