結果

問題 No.48 ロボットの操縦
ユーザー tentententen
提出日時 2020-11-10 12:23:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 540 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-07-22 17:23:54
合計ジャッジ時間 5,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,268 KB
testcase_01 AC 109 ms
41,412 KB
testcase_02 AC 107 ms
41,216 KB
testcase_03 AC 109 ms
41,360 KB
testcase_04 AC 112 ms
41,428 KB
testcase_05 AC 98 ms
40,416 KB
testcase_06 AC 109 ms
40,828 KB
testcase_07 AC 97 ms
40,264 KB
testcase_08 AC 100 ms
40,460 KB
testcase_09 AC 107 ms
41,260 KB
testcase_10 AC 105 ms
40,292 KB
testcase_11 AC 96 ms
39,972 KB
testcase_12 AC 98 ms
40,260 KB
testcase_13 AC 108 ms
41,204 KB
testcase_14 AC 96 ms
39,824 KB
testcase_15 AC 101 ms
40,284 KB
testcase_16 AC 107 ms
41,048 KB
testcase_17 AC 114 ms
41,108 KB
testcase_18 AC 98 ms
40,132 KB
testcase_19 AC 99 ms
40,304 KB
testcase_20 AC 100 ms
40,392 KB
testcase_21 AC 106 ms
41,108 KB
testcase_22 AC 96 ms
40,432 KB
testcase_23 AC 108 ms
41,248 KB
testcase_24 AC 94 ms
40,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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