結果

問題 No.48 ロボットの操縦
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 12:05:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 54,560 KB
最終ジャッジ日時 2024-06-23 23:47:02
合計ジャッジ時間 6,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,164 KB
testcase_01 AC 127 ms
54,112 KB
testcase_02 AC 128 ms
54,268 KB
testcase_03 AC 128 ms
54,148 KB
testcase_04 WA -
testcase_05 AC 128 ms
54,000 KB
testcase_06 AC 130 ms
54,456 KB
testcase_07 WA -
testcase_08 AC 131 ms
53,976 KB
testcase_09 AC 132 ms
53,980 KB
testcase_10 AC 134 ms
53,892 KB
testcase_11 AC 133 ms
54,264 KB
testcase_12 AC 134 ms
53,880 KB
testcase_13 AC 133 ms
54,164 KB
testcase_14 AC 132 ms
54,348 KB
testcase_15 AC 136 ms
54,128 KB
testcase_16 AC 131 ms
54,260 KB
testcase_17 AC 134 ms
54,332 KB
testcase_18 AC 133 ms
54,392 KB
testcase_19 AC 135 ms
54,312 KB
testcase_20 AC 135 ms
54,176 KB
testcase_21 AC 135 ms
54,200 KB
testcase_22 AC 137 ms
54,164 KB
testcase_23 AC 134 ms
54,144 KB
testcase_24 AC 137 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		int X=s.nextInt(),Y=s.nextInt(),L=s.nextInt(),H=(int)Math.ceil(Math.abs((float)X/L)),V=(int)Math.ceil(Math.abs((float)Y/L));
		System.out.println(H+V+(Y<0?2:X==0?0:1));
	}
}
0