結果

問題 No.48 ロボットの操縦
ユーザー m2543315647m2543315647
提出日時 2015-05-14 14:58:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 3,338 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-05-01 13:36:06
合計ジャッジ時間 6,482 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,756 KB
testcase_01 AC 109 ms
52,908 KB
testcase_02 AC 107 ms
52,900 KB
testcase_03 AC 117 ms
53,988 KB
testcase_04 AC 118 ms
53,736 KB
testcase_05 AC 120 ms
54,072 KB
testcase_06 AC 120 ms
53,848 KB
testcase_07 AC 122 ms
53,712 KB
testcase_08 AC 110 ms
53,772 KB
testcase_09 AC 121 ms
54,008 KB
testcase_10 AC 113 ms
53,976 KB
testcase_11 AC 102 ms
52,712 KB
testcase_12 AC 117 ms
54,148 KB
testcase_13 AC 98 ms
52,628 KB
testcase_14 AC 111 ms
54,052 KB
testcase_15 AC 114 ms
52,956 KB
testcase_16 AC 118 ms
53,760 KB
testcase_17 AC 124 ms
54,036 KB
testcase_18 AC 112 ms
54,068 KB
testcase_19 AC 103 ms
52,608 KB
testcase_20 AC 106 ms
52,764 KB
testcase_21 AC 124 ms
54,088 KB
testcase_22 AC 111 ms
52,968 KB
testcase_23 AC 116 ms
53,888 KB
testcase_24 AC 122 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No48 {
	public static void main (String[] args){
	Scanner sc =new Scanner(System.in);
	int x=sc.nextInt();
	int y=sc.nextInt();
	int l=sc.nextInt();
	System.out.println((x!=0?Math.abs(x/l)+1:0)+(y==0?0:y>0?y/l:Math.abs(y/l)+2)+(x%l==0?0:1)+(y%l==0?0:1)-(x!=0&&y<0?1:0));
	}
}
0