結果

問題 No.48 ロボットの操縦
ユーザー spaciaspacia
提出日時 2015-12-29 22:10:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 670 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 53,516 KB
最終ジャッジ日時 2023-10-19 12:26:54
合計ジャッジ時間 4,277 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
53,516 KB
testcase_01 AC 50 ms
51,456 KB
testcase_02 AC 51 ms
53,516 KB
testcase_03 AC 54 ms
53,504 KB
testcase_04 AC 51 ms
52,464 KB
testcase_05 WA -
testcase_06 AC 50 ms
53,508 KB
testcase_07 AC 53 ms
53,500 KB
testcase_08 AC 51 ms
53,516 KB
testcase_09 AC 50 ms
53,500 KB
testcase_10 AC 50 ms
53,504 KB
testcase_11 AC 56 ms
53,508 KB
testcase_12 AC 51 ms
53,512 KB
testcase_13 AC 56 ms
53,508 KB
testcase_14 AC 52 ms
53,504 KB
testcase_15 AC 51 ms
53,508 KB
testcase_16 AC 53 ms
52,436 KB
testcase_17 AC 51 ms
53,500 KB
testcase_18 AC 52 ms
53,504 KB
testcase_19 AC 51 ms
53,500 KB
testcase_20 AC 52 ms
53,508 KB
testcase_21 AC 52 ms
53,500 KB
testcase_22 AC 51 ms
53,512 KB
testcase_23 AC 51 ms
53,508 KB
testcase_24 AC 53 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main48 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int x = Integer.parseInt(br.readLine());
		int y = Integer.parseInt(br.readLine());
		int l = Integer.parseInt(br.readLine());
		
		int turnCnt = y < 0 ? 2 : x == 0 && y > 0 ? 0 : 1;
		x = Math.abs(x);
		y = Math.abs(y);
		int move1 = (double)x / l == x / l ? x / l : x / l + 1;
		int move2 = (double)y / l == y / l ? y / l : y / l + 1;
		
		out(move1 + move2 + turnCnt);
	}
}
0