結果

問題 No.48 ロボットの操縦
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-18 17:33:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 962 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 76,124 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-11-08 02:34:13
合計ジャッジ時間 4,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,088 KB
testcase_01 AC 53 ms
36,560 KB
testcase_02 AC 53 ms
37,012 KB
testcase_03 AC 54 ms
37,108 KB
testcase_04 AC 55 ms
37,068 KB
testcase_05 AC 53 ms
36,816 KB
testcase_06 AC 54 ms
36,852 KB
testcase_07 AC 54 ms
37,148 KB
testcase_08 AC 54 ms
36,828 KB
testcase_09 AC 54 ms
37,004 KB
testcase_10 AC 54 ms
36,868 KB
testcase_11 AC 55 ms
36,988 KB
testcase_12 AC 55 ms
36,948 KB
testcase_13 AC 54 ms
36,976 KB
testcase_14 AC 53 ms
36,532 KB
testcase_15 AC 53 ms
36,688 KB
testcase_16 AC 55 ms
36,872 KB
testcase_17 AC 54 ms
37,076 KB
testcase_18 AC 55 ms
36,548 KB
testcase_19 AC 54 ms
37,248 KB
testcase_20 AC 55 ms
36,836 KB
testcase_21 AC 55 ms
37,104 KB
testcase_22 AC 54 ms
36,900 KB
testcase_23 AC 54 ms
36,560 KB
testcase_24 AC 55 ms
36,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class No48 {

	public static void main(String[] args) throws IOException, NumberFormatException{
		
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int touzai = Integer.parseInt(br.readLine());
		int nanboku = Integer.parseInt(br.readLine());
		int zenshin = Integer.parseInt(br.readLine());
		
		int x = Calculation.calc(touzai,zenshin);
		int y = Calculation.calc(nanboku,zenshin);
		
		System.out.println( x + y + Calculation.direction(touzai,nanboku));
	}
	
	
	public static class Calculation{
	
		public static int calc(int x, int y){
			if (Math.abs(x)%y == 0) return (Math.abs(x)/y); //Math.abs(x)はxの絶対値
			else return (Math.abs(x)/y) + 1;
		}
		
		public static int direction(int x, int y){
			if (x != 0 && y < 0 ) return 2;
			if (x != 0 && 0 <= y) return 1;
			if (x == 0 && y <0) return 2;
			else return 0;
		}
	}
}
0