結果

問題 No.48 ロボットの操縦
ユーザー m2543315647m2543315647
提出日時 2015-05-14 14:47:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 3,183 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-07-06 03:36:43
合計ジャッジ時間 6,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
39,996 KB
testcase_01 AC 103 ms
40,760 KB
testcase_02 AC 103 ms
39,776 KB
testcase_03 WA -
testcase_04 AC 105 ms
40,272 KB
testcase_05 AC 104 ms
41,276 KB
testcase_06 AC 104 ms
40,600 KB
testcase_07 AC 103 ms
40,872 KB
testcase_08 WA -
testcase_09 AC 105 ms
41,160 KB
testcase_10 WA -
testcase_11 AC 102 ms
40,952 KB
testcase_12 AC 94 ms
40,368 KB
testcase_13 AC 105 ms
41,064 KB
testcase_14 AC 106 ms
40,812 KB
testcase_15 AC 105 ms
40,976 KB
testcase_16 AC 104 ms
41,028 KB
testcase_17 AC 103 ms
40,848 KB
testcase_18 WA -
testcase_19 AC 103 ms
41,040 KB
testcase_20 AC 102 ms
39,704 KB
testcase_21 AC 94 ms
40,244 KB
testcase_22 WA -
testcase_23 AC 106 ms
39,904 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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));
	}
}
0