結果

問題 No.48 ロボットの操縦
ユーザー m2543315647m2543315647
提出日時 2015-05-14 14:58:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 3,055 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-11-21 18:18:32
合計ジャッジ時間 6,902 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,308 KB
testcase_01 AC 122 ms
41,392 KB
testcase_02 AC 111 ms
41,356 KB
testcase_03 AC 122 ms
39,840 KB
testcase_04 AC 115 ms
41,484 KB
testcase_05 AC 122 ms
41,396 KB
testcase_06 AC 123 ms
41,348 KB
testcase_07 AC 120 ms
40,068 KB
testcase_08 AC 118 ms
41,508 KB
testcase_09 AC 130 ms
41,444 KB
testcase_10 AC 116 ms
41,468 KB
testcase_11 AC 119 ms
41,124 KB
testcase_12 AC 122 ms
41,440 KB
testcase_13 AC 122 ms
41,416 KB
testcase_14 AC 104 ms
41,416 KB
testcase_15 AC 122 ms
41,392 KB
testcase_16 AC 128 ms
41,380 KB
testcase_17 AC 121 ms
41,436 KB
testcase_18 AC 119 ms
41,228 KB
testcase_19 AC 127 ms
41,176 KB
testcase_20 AC 122 ms
41,108 KB
testcase_21 AC 125 ms
41,116 KB
testcase_22 AC 121 ms
41,652 KB
testcase_23 AC 107 ms
41,416 KB
testcase_24 AC 118 ms
41,388 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