結果

問題 No.48 ロボットの操縦
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 20:45:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 463 bytes
コンパイル時間 2,607 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-21 18:34:09
合計ジャッジ時間 5,794 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,144 KB
testcase_01 AC 118 ms
40,944 KB
testcase_02 AC 120 ms
40,816 KB
testcase_03 AC 113 ms
40,356 KB
testcase_04 AC 110 ms
39,608 KB
testcase_05 AC 119 ms
40,928 KB
testcase_06 AC 129 ms
41,096 KB
testcase_07 AC 106 ms
39,600 KB
testcase_08 AC 118 ms
41,004 KB
testcase_09 AC 119 ms
41,176 KB
testcase_10 AC 121 ms
40,948 KB
testcase_11 AC 119 ms
41,184 KB
testcase_12 AC 119 ms
40,896 KB
testcase_13 AC 122 ms
40,972 KB
testcase_14 AC 110 ms
39,596 KB
testcase_15 AC 119 ms
41,472 KB
testcase_16 AC 121 ms
40,840 KB
testcase_17 AC 120 ms
40,928 KB
testcase_18 AC 120 ms
41,008 KB
testcase_19 AC 109 ms
39,608 KB
testcase_20 AC 119 ms
40,732 KB
testcase_21 AC 110 ms
39,776 KB
testcase_22 AC 121 ms
41,124 KB
testcase_23 AC 121 ms
41,304 KB
testcase_24 AC 119 ms
41,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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