結果

問題 No.48 ロボットの操縦
ユーザー yu_017yu_017
提出日時 2019-02-03 09:41:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 3,611 ms
コンパイル使用メモリ 72,472 KB
実行使用メモリ 57,756 KB
最終ジャッジ日時 2023-08-21 22:02:53
合計ジャッジ時間 8,536 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
57,756 KB
testcase_01 AC 130 ms
55,792 KB
testcase_02 AC 130 ms
55,792 KB
testcase_03 AC 130 ms
55,912 KB
testcase_04 AC 131 ms
55,816 KB
testcase_05 AC 131 ms
55,792 KB
testcase_06 AC 131 ms
55,724 KB
testcase_07 AC 132 ms
55,732 KB
testcase_08 AC 132 ms
55,788 KB
testcase_09 AC 131 ms
55,780 KB
testcase_10 AC 131 ms
55,848 KB
testcase_11 AC 132 ms
55,964 KB
testcase_12 AC 130 ms
55,648 KB
testcase_13 AC 131 ms
55,924 KB
testcase_14 AC 130 ms
55,808 KB
testcase_15 AC 130 ms
55,840 KB
testcase_16 AC 128 ms
55,532 KB
testcase_17 AC 128 ms
55,724 KB
testcase_18 AC 129 ms
55,512 KB
testcase_19 AC 127 ms
55,788 KB
testcase_20 AC 131 ms
55,832 KB
testcase_21 AC 130 ms
55,884 KB
testcase_22 AC 129 ms
55,944 KB
testcase_23 AC 129 ms
55,780 KB
testcase_24 AC 128 ms
55,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000048 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		int l = sc.nextInt();
		sc.close();
		int r = 0;
		if(y<0)r++;
		if(x!=0) {
			r++;
			r+=((x>0?x:-x)-1)/l+1;
		}else if(y<0) {
			r++;
		}
		if(y!=0) {
			r+=((y>0?y:-y)-1)/l+1;
		}
		System.out.println(r);
	}
}
0