結果

問題 No.48 ロボットの操縦
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 14:37:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 2,818 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 55,932 KB
最終ジャッジ日時 2024-10-06 18:21:44
合計ジャッジ時間 7,185 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
40,892 KB
testcase_01 AC 135 ms
41,156 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 132 ms
40,960 KB
testcase_05 AC 135 ms
41,472 KB
testcase_06 WA -
testcase_07 AC 138 ms
41,580 KB
testcase_08 WA -
testcase_09 AC 138 ms
41,100 KB
testcase_10 WA -
testcase_11 AC 136 ms
41,020 KB
testcase_12 AC 134 ms
41,092 KB
testcase_13 AC 136 ms
41,276 KB
testcase_14 AC 137 ms
41,092 KB
testcase_15 AC 139 ms
40,696 KB
testcase_16 AC 135 ms
41,040 KB
testcase_17 AC 137 ms
41,136 KB
testcase_18 WA -
testcase_19 AC 134 ms
41,140 KB
testcase_20 AC 135 ms
40,940 KB
testcase_21 AC 136 ms
41,116 KB
testcase_22 WA -
testcase_23 AC 135 ms
40,856 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int x = Math.abs(sc.nextInt());
		int y = Math.abs(sc.nextInt());
		int leng = sc.nextInt();
		int times = (x+leng-1)/leng + (y+leng-1)/leng;
		if (y < 0) {times += 2;}
		else if (y>0 && x!=0) {times += 1;}
		System.out.println(times);
	}
}
0