結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,876 KB
testcase_01 AC 132 ms
53,888 KB
testcase_02 WA -
testcase_03 AC 135 ms
53,728 KB
testcase_04 AC 134 ms
53,840 KB
testcase_05 AC 131 ms
53,828 KB
testcase_06 AC 135 ms
54,044 KB
testcase_07 AC 132 ms
53,956 KB
testcase_08 AC 132 ms
54,244 KB
testcase_09 AC 128 ms
54,268 KB
testcase_10 AC 133 ms
53,980 KB
testcase_11 AC 132 ms
41,376 KB
testcase_12 AC 129 ms
41,088 KB
testcase_13 AC 128 ms
41,112 KB
testcase_14 AC 123 ms
41,484 KB
testcase_15 AC 129 ms
41,276 KB
testcase_16 AC 127 ms
41,544 KB
testcase_17 AC 131 ms
41,484 KB
testcase_18 AC 127 ms
41,100 KB
testcase_19 AC 123 ms
41,344 KB
testcase_20 AC 124 ms
41,348 KB
testcase_21 AC 133 ms
41,480 KB
testcase_22 AC 132 ms
41,132 KB
testcase_23 AC 132 ms
41,204 KB
testcase_24 AC 131 ms
41,112 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 && x!=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