結果

問題 No.48 ロボットの操縦
ユーザー spaciaspacia
提出日時 2015-12-29 22:14:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 71,568 KB
実行使用メモリ 49,688 KB
最終ジャッジ日時 2023-08-14 00:19:32
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
49,172 KB
testcase_01 AC 35 ms
49,244 KB
testcase_02 AC 37 ms
49,496 KB
testcase_03 AC 35 ms
49,364 KB
testcase_04 AC 35 ms
49,248 KB
testcase_05 AC 35 ms
49,324 KB
testcase_06 AC 36 ms
49,428 KB
testcase_07 AC 36 ms
49,176 KB
testcase_08 AC 38 ms
49,312 KB
testcase_09 AC 36 ms
49,152 KB
testcase_10 AC 35 ms
49,384 KB
testcase_11 AC 37 ms
49,280 KB
testcase_12 AC 36 ms
49,404 KB
testcase_13 AC 36 ms
49,420 KB
testcase_14 AC 37 ms
49,484 KB
testcase_15 AC 36 ms
49,128 KB
testcase_16 AC 36 ms
49,320 KB
testcase_17 AC 36 ms
49,252 KB
testcase_18 AC 35 ms
49,488 KB
testcase_19 AC 35 ms
49,688 KB
testcase_20 AC 36 ms
49,136 KB
testcase_21 AC 36 ms
49,244 KB
testcase_22 AC 35 ms
49,332 KB
testcase_23 AC 36 ms
49,248 KB
testcase_24 AC 35 ms
49,364 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 ? 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