結果

問題 No.48 ロボットの操縦
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 23:28:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-09-13 11:36:02
合計ジャッジ時間 6,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
54,080 KB
testcase_02 AC 131 ms
54,024 KB
testcase_03 AC 132 ms
53,952 KB
testcase_04 AC 131 ms
53,920 KB
testcase_05 WA -
testcase_06 AC 131 ms
53,956 KB
testcase_07 AC 128 ms
53,900 KB
testcase_08 AC 132 ms
53,876 KB
testcase_09 AC 133 ms
53,836 KB
testcase_10 AC 130 ms
54,112 KB
testcase_11 AC 116 ms
52,940 KB
testcase_12 AC 127 ms
54,004 KB
testcase_13 AC 131 ms
54,192 KB
testcase_14 AC 132 ms
54,048 KB
testcase_15 AC 131 ms
54,044 KB
testcase_16 AC 115 ms
52,724 KB
testcase_17 AC 132 ms
54,128 KB
testcase_18 AC 134 ms
54,016 KB
testcase_19 AC 133 ms
54,100 KB
testcase_20 AC 135 ms
54,108 KB
testcase_21 AC 131 ms
54,224 KB
testcase_22 AC 132 ms
53,920 KB
testcase_23 AC 133 ms
54,088 KB
testcase_24 AC 130 ms
54,100 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) 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