結果

問題 No.48 ロボットの操縦
ユーザー jp_stejp_ste
提出日時 2016-05-14 15:07:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,105 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,868 KB
実行使用メモリ 55,952 KB
最終ジャッジ日時 2024-10-06 02:32:24
合計ジャッジ時間 5,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,784 KB
testcase_01 AC 115 ms
54,180 KB
testcase_02 WA -
testcase_03 AC 116 ms
53,828 KB
testcase_04 AC 115 ms
53,964 KB
testcase_05 AC 117 ms
54,020 KB
testcase_06 AC 106 ms
52,836 KB
testcase_07 AC 117 ms
53,824 KB
testcase_08 AC 103 ms
52,880 KB
testcase_09 AC 114 ms
53,856 KB
testcase_10 AC 112 ms
54,348 KB
testcase_11 AC 103 ms
52,824 KB
testcase_12 AC 115 ms
53,980 KB
testcase_13 AC 104 ms
53,012 KB
testcase_14 AC 113 ms
54,144 KB
testcase_15 AC 110 ms
53,980 KB
testcase_16 AC 114 ms
53,832 KB
testcase_17 AC 114 ms
53,996 KB
testcase_18 AC 116 ms
53,928 KB
testcase_19 AC 116 ms
53,872 KB
testcase_20 AC 113 ms
53,924 KB
testcase_21 AC 113 ms
53,916 KB
testcase_22 AC 118 ms
54,028 KB
testcase_23 AC 117 ms
53,936 KB
testcase_24 AC 113 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int x = Integer.parseInt(scan.next());
            int y = Integer.parseInt(scan.next());
            int l = Integer.parseInt(scan.next());
            
            int count = 0;
            if(y >= 0) {
                x = Math.abs(x);
                y = Math.abs(y);
                count += (y / l);
                if(y%l > 0) count++;
                if(x != 0) {
                    count++;
                    count += (x / l);
                    if(x%l > 0) count++;
                }
                
            } else if(y < 0) {
                x = Math.abs(x);
                y = Math.abs(y);
                if(x != 0) { 
                    count++;
                    count += (x / l);
                    if(x%l > 0) count++;
                    count++;
                    count += (y / l);
                    if(y%l > 0) count++;
                }
            }
            System.out.println(count);
        }
    }
}
0