結果

問題 No.48 ロボットの操縦
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-09 21:41:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 694 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-05-04 00:27:27
合計ジャッジ時間 6,960 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,372 KB
testcase_01 AC 132 ms
41,296 KB
testcase_02 WA -
testcase_03 AC 132 ms
41,060 KB
testcase_04 AC 134 ms
41,188 KB
testcase_05 AC 135 ms
41,484 KB
testcase_06 AC 131 ms
40,756 KB
testcase_07 AC 131 ms
41,052 KB
testcase_08 AC 133 ms
41,208 KB
testcase_09 AC 132 ms
41,028 KB
testcase_10 AC 134 ms
40,956 KB
testcase_11 AC 134 ms
41,040 KB
testcase_12 AC 133 ms
41,380 KB
testcase_13 AC 134 ms
41,404 KB
testcase_14 AC 118 ms
40,224 KB
testcase_15 AC 135 ms
41,288 KB
testcase_16 AC 134 ms
41,036 KB
testcase_17 AC 137 ms
41,052 KB
testcase_18 AC 142 ms
40,920 KB
testcase_19 AC 135 ms
41,380 KB
testcase_20 AC 133 ms
41,504 KB
testcase_21 AC 130 ms
40,940 KB
testcase_22 AC 136 ms
40,788 KB
testcase_23 AC 135 ms
41,292 KB
testcase_24 AC 135 ms
41,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int X = sc.nextInt();
        int Y = sc.nextInt();
        int L = sc.nextInt();
        int turn=0;
        int gox=0;
        int goy=0;

        if(X%L==0){
                gox=Math.abs(X/L);
        }else{
                gox=Math.abs(X/L)+1;
        }
        if(Y%L==0){
                goy=Math.abs(Y/L);
        }else{
                goy=Math.abs(Y/L)+1;
        }

        if(X!=0){
                turn=1;
        }
        if(Y<0){
                turn=turn+1;
        }

        int r = gox+goy+turn;
        System.out.println( r );
    }
}
0