結果

問題 No.48 ロボットの操縦
ユーザー kano_townkano_town
提出日時 2014-11-19 17:58:46
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

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