結果

問題 No.48 ロボットの操縦
ユーザー jp_stejp_ste
提出日時 2016-05-14 15:12:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 1,248 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 77,412 KB
実行使用メモリ 41,164 KB
最終ジャッジ日時 2024-11-21 18:39:33
合計ジャッジ時間 5,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,952 KB
testcase_01 AC 117 ms
39,856 KB
testcase_02 AC 106 ms
39,912 KB
testcase_03 AC 116 ms
41,024 KB
testcase_04 AC 103 ms
39,856 KB
testcase_05 AC 115 ms
40,888 KB
testcase_06 AC 114 ms
40,692 KB
testcase_07 AC 115 ms
41,020 KB
testcase_08 AC 116 ms
40,844 KB
testcase_09 AC 107 ms
40,196 KB
testcase_10 AC 115 ms
40,884 KB
testcase_11 AC 103 ms
40,084 KB
testcase_12 AC 115 ms
40,808 KB
testcase_13 AC 117 ms
41,164 KB
testcase_14 AC 116 ms
40,956 KB
testcase_15 AC 113 ms
40,868 KB
testcase_16 AC 116 ms
41,048 KB
testcase_17 AC 116 ms
41,076 KB
testcase_18 AC 103 ms
39,804 KB
testcase_19 AC 113 ms
40,800 KB
testcase_20 AC 115 ms
40,920 KB
testcase_21 AC 114 ms
41,156 KB
testcase_22 AC 116 ms
41,120 KB
testcase_23 AC 102 ms
39,752 KB
testcase_24 AC 115 ms
40,968 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+=2;
                    count += (y / l);
                    if(y%l > 0) count++;
                } else 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