結果

問題 No.48 ロボットの操縦
ユーザー YamaKasaYamaKasa
提出日時 2018-04-21 17:17:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-06-27 05:25:15
合計ジャッジ時間 6,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,472 KB
testcase_01 AC 136 ms
41,548 KB
testcase_02 AC 133 ms
41,204 KB
testcase_03 AC 134 ms
41,332 KB
testcase_04 AC 120 ms
40,128 KB
testcase_05 AC 133 ms
41,160 KB
testcase_06 AC 134 ms
41,248 KB
testcase_07 AC 132 ms
41,076 KB
testcase_08 AC 116 ms
39,988 KB
testcase_09 AC 133 ms
41,056 KB
testcase_10 AC 132 ms
41,044 KB
testcase_11 AC 131 ms
41,228 KB
testcase_12 AC 133 ms
41,068 KB
testcase_13 AC 132 ms
41,164 KB
testcase_14 AC 132 ms
41,004 KB
testcase_15 AC 131 ms
41,176 KB
testcase_16 AC 130 ms
40,896 KB
testcase_17 AC 132 ms
41,312 KB
testcase_18 AC 132 ms
41,032 KB
testcase_19 AC 133 ms
41,272 KB
testcase_20 AC 122 ms
39,992 KB
testcase_21 AC 133 ms
41,440 KB
testcase_22 AC 129 ms
41,300 KB
testcase_23 AC 134 ms
41,024 KB
testcase_24 AC 134 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long X = scan.nextLong();
		long Y = scan.nextLong();
		long L = scan.nextLong();
		scan.close();
		long ans = 0;
		if(X == 0 && Y <0) {
			ans += 2;
			Y = -Y;
		}else {
			if(Y < 0) {
				ans = 1;
				Y = - Y;
			}
			if(X != 0) {
				ans += 1;
				if(X < 0) {
					X = - X;
				}
			}
		}

		ans += X / L + Y / L;
		if(X % L > 0) {
			ans += 1;
		}
		if(Y % L > 0) {
			ans += 1;
		}
		System.out.println(ans);
	}
}
0