結果

問題 No.48 ロボットの操縦
ユーザー takutakutakutaku
提出日時 2020-10-06 16:08:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 983 bytes
コンパイル時間 3,554 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-07-20 02:06:19
合計ジャッジ時間 7,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,032 KB
testcase_01 AC 129 ms
54,292 KB
testcase_02 AC 146 ms
53,860 KB
testcase_03 WA -
testcase_04 AC 140 ms
53,716 KB
testcase_05 AC 145 ms
54,188 KB
testcase_06 WA -
testcase_07 AC 137 ms
54,064 KB
testcase_08 WA -
testcase_09 AC 144 ms
54,204 KB
testcase_10 WA -
testcase_11 AC 133 ms
54,044 KB
testcase_12 AC 133 ms
53,748 KB
testcase_13 AC 133 ms
54,068 KB
testcase_14 AC 136 ms
53,916 KB
testcase_15 AC 133 ms
53,716 KB
testcase_16 AC 133 ms
53,840 KB
testcase_17 AC 136 ms
53,944 KB
testcase_18 WA -
testcase_19 AC 131 ms
53,944 KB
testcase_20 AC 132 ms
54,136 KB
testcase_21 AC 137 ms
53,884 KB
testcase_22 AC 134 ms
53,944 KB
testcase_23 AC 142 ms
53,920 KB
testcase_24 AC 145 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        
        Scanner sc = new Scanner(System.in);
        int x = Integer.parseInt(sc.nextLine());
        int y = Integer.parseInt(sc.nextLine());
        int l = Integer.parseInt(sc.nextLine());
        
        int count = 0;
        int dis = 0;
        // 向きの変更回数
        if(y > 0 && x != 0) {
            count++;
        }else if(y < 0) {
            count += 2;
        }
        
        if(y % l != 0) {
            dis = y / l + 1;
            count += dis;
        }else {
            dis = y / l;
            count += dis;
            
        }
        
        if(x < 0) {
            x = -x;
        }
        
        if(x % l != 0) {
            dis = x / l + 1;
           count += dis;
        }else {
            dis = x / l;
            count += dis;
        }
        
        System.out.println(count);
    }
}
0