結果

問題 No.48 ロボットの操縦
ユーザー sasakkisasakki
提出日時 2016-05-30 20:22:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-11-21 18:42:51
合計ジャッジ時間 5,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,988 KB
testcase_01 AC 116 ms
41,300 KB
testcase_02 AC 116 ms
41,120 KB
testcase_03 AC 109 ms
41,080 KB
testcase_04 AC 118 ms
41,284 KB
testcase_05 AC 114 ms
40,164 KB
testcase_06 AC 106 ms
40,972 KB
testcase_07 AC 116 ms
40,140 KB
testcase_08 AC 116 ms
41,564 KB
testcase_09 AC 111 ms
41,204 KB
testcase_10 AC 116 ms
41,560 KB
testcase_11 AC 119 ms
41,492 KB
testcase_12 AC 115 ms
41,228 KB
testcase_13 AC 115 ms
41,036 KB
testcase_14 AC 104 ms
41,212 KB
testcase_15 AC 118 ms
41,292 KB
testcase_16 AC 119 ms
41,292 KB
testcase_17 AC 117 ms
41,096 KB
testcase_18 AC 120 ms
41,236 KB
testcase_19 AC 116 ms
41,344 KB
testcase_20 AC 118 ms
41,580 KB
testcase_21 AC 118 ms
41,304 KB
testcase_22 AC 105 ms
40,040 KB
testcase_23 AC 119 ms
41,352 KB
testcase_24 AC 119 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int X = Integer.parseInt(sc.next());
		int Y = Integer.parseInt(sc.next());
		int L = Integer.parseInt(sc.next());

		int ans = (Math.abs(X)+L-1)/L + (Math.abs(Y)+L-1)/L;

		if(Y>=0){
			if(X!=0){
				ans++;
					}
		}
		else{
			ans = ans + 2;
			if(X!=0){
				if(X==0){
				ans++;
				}
			}
		}
				
		System.out.println(ans);
	}
}
0