結果

問題 No.48 ロボットの操縦
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 14:39:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 1,849 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 41,260 KB
最終ジャッジ日時 2024-10-06 18:35:09
合計ジャッジ時間 5,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,948 KB
testcase_01 AC 126 ms
41,108 KB
testcase_02 AC 121 ms
41,112 KB
testcase_03 AC 101 ms
40,040 KB
testcase_04 AC 101 ms
40,156 KB
testcase_05 AC 114 ms
40,984 KB
testcase_06 WA -
testcase_07 AC 116 ms
41,244 KB
testcase_08 AC 117 ms
41,260 KB
testcase_09 AC 103 ms
39,956 KB
testcase_10 AC 113 ms
40,980 KB
testcase_11 AC 112 ms
40,580 KB
testcase_12 AC 107 ms
40,384 KB
testcase_13 AC 112 ms
40,884 KB
testcase_14 AC 116 ms
41,196 KB
testcase_15 AC 117 ms
41,260 KB
testcase_16 AC 118 ms
41,072 KB
testcase_17 AC 106 ms
39,904 KB
testcase_18 AC 117 ms
41,248 KB
testcase_19 AC 124 ms
41,152 KB
testcase_20 AC 120 ms
40,972 KB
testcase_21 AC 115 ms
41,100 KB
testcase_22 AC 120 ms
40,896 KB
testcase_23 AC 117 ms
40,960 KB
testcase_24 AC 100 ms
39,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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