結果

問題 No.48 ロボットの操縦
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:35:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 2,920 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 48,224 KB
最終ジャッジ日時 2024-11-21 18:54:24
合計ジャッジ時間 6,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
46,948 KB
testcase_01 AC 116 ms
47,644 KB
testcase_02 AC 120 ms
47,876 KB
testcase_03 AC 118 ms
47,620 KB
testcase_04 AC 113 ms
47,824 KB
testcase_05 AC 120 ms
48,068 KB
testcase_06 AC 116 ms
47,956 KB
testcase_07 AC 115 ms
47,764 KB
testcase_08 AC 118 ms
47,976 KB
testcase_09 AC 113 ms
47,640 KB
testcase_10 AC 110 ms
46,780 KB
testcase_11 AC 116 ms
47,784 KB
testcase_12 AC 106 ms
46,884 KB
testcase_13 AC 115 ms
47,976 KB
testcase_14 AC 111 ms
47,860 KB
testcase_15 AC 111 ms
47,644 KB
testcase_16 AC 112 ms
47,788 KB
testcase_17 AC 119 ms
48,224 KB
testcase_18 AC 113 ms
47,848 KB
testcase_19 AC 112 ms
47,508 KB
testcase_20 AC 112 ms
47,708 KB
testcase_21 AC 114 ms
47,928 KB
testcase_22 AC 117 ms
47,792 KB
testcase_23 AC 103 ms
46,896 KB
testcase_24 AC 111 ms
47,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int x = sc.nextInt(), y = sc.nextInt(), t = sc.nextInt(), cnt = 0;
		if (x < 0) {
			x *= -1;
		}
		if (x > 0) {
			cnt++;
		}
		if (y < 0) {
			y *= -1;
			if (x > 0) {
				cnt++;
			} else {
				cnt += 2;
			}
		}
		cnt += x / t + y / t;
		if (x % t > 0) {
			cnt++;
		}
		if (y % t > 0) {
			cnt++;
		}
		System.out.println(cnt);
	}
}
0