結果

問題 No.48 ロボットの操縦
ユーザー kou6839kou6839
提出日時 2014-11-19 13:30:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 533 bytes
コンパイル時間 2,824 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 42,332 KB
最終ジャッジ日時 2024-11-21 18:08:02
合計ジャッジ時間 7,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,964 KB
testcase_01 AC 143 ms
41,524 KB
testcase_02 AC 152 ms
42,332 KB
testcase_03 AC 143 ms
41,920 KB
testcase_04 AC 152 ms
41,560 KB
testcase_05 AC 148 ms
41,876 KB
testcase_06 AC 147 ms
42,112 KB
testcase_07 AC 142 ms
41,636 KB
testcase_08 AC 142 ms
42,104 KB
testcase_09 AC 139 ms
41,980 KB
testcase_10 AC 145 ms
42,188 KB
testcase_11 AC 146 ms
41,688 KB
testcase_12 AC 154 ms
41,744 KB
testcase_13 AC 144 ms
41,840 KB
testcase_14 AC 150 ms
41,508 KB
testcase_15 AC 130 ms
41,984 KB
testcase_16 AC 141 ms
41,812 KB
testcase_17 AC 141 ms
41,648 KB
testcase_18 AC 130 ms
41,728 KB
testcase_19 AC 143 ms
41,828 KB
testcase_20 AC 141 ms
42,032 KB
testcase_21 AC 145 ms
41,852 KB
testcase_22 AC 143 ms
41,668 KB
testcase_23 AC 155 ms
41,680 KB
testcase_24 AC 155 ms
41,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x= sc.nextInt();
		int y=sc.nextInt();
		double l=sc.nextDouble();
		int ans=0;
		if(x==0&&y==0){
			System.out.println(0);
			return;
		}
		if(y>=0){
			ans+=(int)Math.ceil(y/l);
			if(x!=0){
				ans+=1+(int)Math.ceil(Math.abs(x)/l);
			}
		}else{
			ans=(int)Math.ceil(Math.abs(y)/l);
			
				ans+=2+(int)Math.ceil(Math.abs(x)/l);
			
		}
		System.out.println(ans);
	}
}	
0