結果

問題 No.48 ロボットの操縦
ユーザー yu_017yu_017
提出日時 2019-02-03 09:41:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 3,524 ms
コンパイル使用メモリ 79,388 KB
実行使用メモリ 41,780 KB
最終ジャッジ日時 2024-05-09 04:14:52
合計ジャッジ時間 7,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,596 KB
testcase_01 AC 130 ms
41,424 KB
testcase_02 AC 128 ms
41,300 KB
testcase_03 AC 128 ms
41,676 KB
testcase_04 AC 132 ms
41,656 KB
testcase_05 AC 136 ms
41,516 KB
testcase_06 AC 130 ms
41,588 KB
testcase_07 AC 127 ms
41,560 KB
testcase_08 AC 129 ms
41,680 KB
testcase_09 AC 128 ms
41,652 KB
testcase_10 AC 114 ms
41,140 KB
testcase_11 AC 131 ms
41,172 KB
testcase_12 AC 127 ms
41,508 KB
testcase_13 AC 127 ms
41,448 KB
testcase_14 AC 127 ms
41,304 KB
testcase_15 AC 129 ms
41,712 KB
testcase_16 AC 115 ms
41,300 KB
testcase_17 AC 114 ms
41,464 KB
testcase_18 AC 127 ms
41,680 KB
testcase_19 AC 130 ms
41,636 KB
testcase_20 AC 129 ms
41,780 KB
testcase_21 AC 130 ms
41,260 KB
testcase_22 AC 130 ms
41,444 KB
testcase_23 AC 136 ms
41,516 KB
testcase_24 AC 128 ms
41,496 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