結果

問題 No.48 ロボットの操縦
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 23:30:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-13 11:36:16
合計ジャッジ時間 6,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
52,812 KB
testcase_01 AC 115 ms
53,036 KB
testcase_02 AC 115 ms
53,088 KB
testcase_03 AC 132 ms
53,876 KB
testcase_04 AC 127 ms
53,972 KB
testcase_05 AC 129 ms
53,988 KB
testcase_06 AC 131 ms
54,208 KB
testcase_07 AC 132 ms
54,040 KB
testcase_08 AC 130 ms
54,156 KB
testcase_09 AC 130 ms
53,860 KB
testcase_10 AC 133 ms
54,248 KB
testcase_11 AC 129 ms
53,912 KB
testcase_12 AC 129 ms
53,824 KB
testcase_13 AC 130 ms
54,064 KB
testcase_14 AC 128 ms
53,984 KB
testcase_15 AC 128 ms
53,852 KB
testcase_16 AC 126 ms
54,112 KB
testcase_17 AC 130 ms
54,012 KB
testcase_18 AC 130 ms
54,352 KB
testcase_19 AC 132 ms
53,908 KB
testcase_20 AC 129 ms
53,956 KB
testcase_21 AC 131 ms
54,232 KB
testcase_22 AC 131 ms
54,092 KB
testcase_23 AC 133 ms
54,032 KB
testcase_24 AC 116 ms
52,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		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) ans += 2;
		
//		System.out.println(":"+ans);
		
		if (x%L == 0) ans += Math.abs(x/L);
		else ans += Math.abs(x/L) + 1;
		
//		System.out.println(":"+ans);
		
		if (y%L == 0) ans += Math.abs(y/L);
		else ans += Math.abs(y/L) + 1;
		
		System.out.println(ans);
		
	}
}
0