結果

問題 No.48 ロボットの操縦
ユーザー SuunnSuunn
提出日時 2018-11-20 05:36:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 525 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 75,068 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-06-06 21:05:54
合計ジャッジ時間 5,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,684 KB
testcase_01 AC 98 ms
52,460 KB
testcase_02 AC 122 ms
54,036 KB
testcase_03 AC 114 ms
54,024 KB
testcase_04 AC 103 ms
52,500 KB
testcase_05 AC 114 ms
53,876 KB
testcase_06 AC 114 ms
53,552 KB
testcase_07 AC 118 ms
53,728 KB
testcase_08 AC 115 ms
53,688 KB
testcase_09 AC 98 ms
52,336 KB
testcase_10 AC 116 ms
53,996 KB
testcase_11 AC 100 ms
52,668 KB
testcase_12 AC 114 ms
53,852 KB
testcase_13 AC 100 ms
53,764 KB
testcase_14 AC 120 ms
54,024 KB
testcase_15 AC 120 ms
53,744 KB
testcase_16 AC 117 ms
53,896 KB
testcase_17 AC 114 ms
54,008 KB
testcase_18 AC 117 ms
53,908 KB
testcase_19 AC 114 ms
53,944 KB
testcase_20 AC 113 ms
53,788 KB
testcase_21 AC 103 ms
52,748 KB
testcase_22 AC 103 ms
52,580 KB
testcase_23 AC 119 ms
54,236 KB
testcase_24 AC 107 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int X = sc.nextInt();
		int Y = sc.nextInt();
		int L = sc.nextInt();
		X = Math.abs(X);
		int ans = 0;
		if(Y>0){
			ans += (Y-1)/L+1;
			if(X>0){
				ans += (X-1)/L+2;
			}
		}else if(Y<0){
			ans += 2;
			Y = Math.abs(Y);
			if(X>0){
				ans += (X-1)/L+1;
			}
			ans += (Y-1)/L+1;
		}else{
			if(X>0){
				ans += (X-1)/L+2;
			}
		}
		System.out.println(ans);
		
	}
}
0