結果

問題 No.48 ロボットの操縦
ユーザー kano_townkano_town
提出日時 2014-11-19 17:58:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 423 bytes
コンパイル時間 3,446 ms
コンパイル使用メモリ 83,320 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-11-21 18:08:18
合計ジャッジ時間 7,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,884 KB
testcase_01 AC 112 ms
39,908 KB
testcase_02 AC 113 ms
40,228 KB
testcase_03 AC 122 ms
41,516 KB
testcase_04 AC 123 ms
41,144 KB
testcase_05 AC 107 ms
40,076 KB
testcase_06 AC 110 ms
40,084 KB
testcase_07 AC 120 ms
41,172 KB
testcase_08 AC 111 ms
39,704 KB
testcase_09 AC 122 ms
41,212 KB
testcase_10 AC 125 ms
41,100 KB
testcase_11 AC 121 ms
41,008 KB
testcase_12 AC 124 ms
41,408 KB
testcase_13 AC 121 ms
41,144 KB
testcase_14 AC 109 ms
39,888 KB
testcase_15 AC 108 ms
39,864 KB
testcase_16 AC 119 ms
40,828 KB
testcase_17 AC 119 ms
41,208 KB
testcase_18 AC 124 ms
41,160 KB
testcase_19 AC 123 ms
40,776 KB
testcase_20 AC 120 ms
40,964 KB
testcase_21 AC 123 ms
41,204 KB
testcase_22 AC 121 ms
41,056 KB
testcase_23 AC 123 ms
40,928 KB
testcase_24 AC 122 ms
40,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder48 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int X = sc.nextInt();
		int Y = sc.nextInt();
		double L = sc.nextInt();
		int count = 0;
		
		if (Y < 0) count = 2;
		else if (X != 0) count = 1;
		
		count += Math.ceil(Math.abs(X) / L);
		count += Math.ceil(Math.abs(Y) / L);
		
		System.out.println(count);
	}
}
0