結果

問題 No.48 ロボットの操縦
ユーザー sasakkisasakki
提出日時 2016-05-30 20:15:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-10-07 18:51:01
合計ジャッジ時間 5,861 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,132 KB
testcase_01 AC 117 ms
40,992 KB
testcase_02 AC 114 ms
40,712 KB
testcase_03 WA -
testcase_04 AC 120 ms
40,992 KB
testcase_05 AC 120 ms
40,984 KB
testcase_06 AC 119 ms
41,028 KB
testcase_07 AC 114 ms
41,276 KB
testcase_08 WA -
testcase_09 AC 106 ms
41,028 KB
testcase_10 WA -
testcase_11 AC 112 ms
40,824 KB
testcase_12 AC 101 ms
40,836 KB
testcase_13 AC 111 ms
41,156 KB
testcase_14 AC 117 ms
40,876 KB
testcase_15 AC 100 ms
41,084 KB
testcase_16 AC 104 ms
41,384 KB
testcase_17 AC 114 ms
40,860 KB
testcase_18 WA -
testcase_19 AC 120 ms
40,820 KB
testcase_20 AC 119 ms
41,460 KB
testcase_21 AC 118 ms
41,204 KB
testcase_22 WA -
testcase_23 AC 116 ms
41,160 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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){
				ans++;
			}
		}
				
		System.out.println(ans);
	}
}
0