結果

問題 No.48 ロボットの操縦
ユーザー oyafusooyafuso
提出日時 2019-03-15 17:46:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 849 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 75,052 KB
実行使用メモリ 41,308 KB
最終ジャッジ日時 2024-07-01 20:02:15
合計ジャッジ時間 6,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,748 KB
testcase_01 AC 129 ms
41,292 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 129 ms
40,816 KB
testcase_05 AC 114 ms
39,672 KB
testcase_06 AC 128 ms
40,928 KB
testcase_07 AC 129 ms
40,944 KB
testcase_08 WA -
testcase_09 AC 117 ms
39,900 KB
testcase_10 WA -
testcase_11 AC 129 ms
40,904 KB
testcase_12 AC 130 ms
41,200 KB
testcase_13 AC 127 ms
41,256 KB
testcase_14 AC 130 ms
41,200 KB
testcase_15 AC 129 ms
40,820 KB
testcase_16 AC 128 ms
41,200 KB
testcase_17 AC 129 ms
40,932 KB
testcase_18 WA -
testcase_19 AC 131 ms
40,928 KB
testcase_20 AC 132 ms
41,104 KB
testcase_21 AC 130 ms
41,044 KB
testcase_22 WA -
testcase_23 AC 129 ms
40,960 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {

	private static final String SPLIT_STR = " ";

	public static void main(String[] args) {
		// Scanner生成
		Scanner sc = new Scanner(System.in);
		// 入力設定
		String input = sc.nextLine();
		int X = Integer.parseInt(input);
		sc.reset();
		input = sc.nextLine();
		int Y = Integer.parseInt(input);
		sc.reset();
		input = sc.nextLine();
		int L = Integer.parseInt(input);
		// Scannerクローズ
		sc.close();

		/* メイン処理開始 */
		// 変数初期化
		int result = 0;
		int turnCnt = 0;
		// 結果設定
		if (X != 0 && Y >= 0) {
			turnCnt++;
		}
		if (X < 0) {
			X *= -1;
		}
		if (Y < 0) {
			Y *= -1;
			turnCnt++;
		}
		result = (int)Math.ceil((double)X / L) + (int)Math.ceil((double)Y / L) + turnCnt;
		/* メイン処理終了 */

		// 結果出力
		System.out.println(result);
	}
}
0