結果

問題 No.48 ロボットの操縦
ユーザー kou6839kou6839
提出日時 2014-11-19 13:27:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2024-06-10 21:11:23
合計ジャッジ時間 5,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,320 KB
testcase_01 AC 117 ms
41,164 KB
testcase_02 WA -
testcase_03 AC 117 ms
40,204 KB
testcase_04 AC 116 ms
41,508 KB
testcase_05 AC 117 ms
41,852 KB
testcase_06 AC 129 ms
41,252 KB
testcase_07 AC 101 ms
40,284 KB
testcase_08 AC 126 ms
41,440 KB
testcase_09 AC 116 ms
40,536 KB
testcase_10 AC 117 ms
41,556 KB
testcase_11 AC 114 ms
41,080 KB
testcase_12 AC 115 ms
41,472 KB
testcase_13 AC 109 ms
40,684 KB
testcase_14 AC 119 ms
40,200 KB
testcase_15 AC 111 ms
40,356 KB
testcase_16 AC 116 ms
41,692 KB
testcase_17 AC 115 ms
41,224 KB
testcase_18 AC 118 ms
40,924 KB
testcase_19 AC 130 ms
41,512 KB
testcase_20 AC 128 ms
41,612 KB
testcase_21 AC 120 ms
41,240 KB
testcase_22 AC 110 ms
40,572 KB
testcase_23 AC 107 ms
40,440 KB
testcase_24 AC 123 ms
40,416 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(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);
			if(x!=0){
				ans+=2+(int)Math.ceil(Math.abs(x)/l);
			}
		}
		System.out.println(ans);
	}
}	
0