結果

問題 No.48 ロボットの操縦
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 22:18:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 752 bytes
コンパイル時間 1,762 ms
コンパイル使用メモリ 73,940 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-05-04 11:28:17
合計ジャッジ時間 5,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,400 KB
testcase_01 AC 113 ms
40,688 KB
testcase_02 AC 111 ms
40,804 KB
testcase_03 AC 109 ms
40,228 KB
testcase_04 AC 103 ms
40,320 KB
testcase_05 AC 99 ms
39,972 KB
testcase_06 AC 104 ms
40,680 KB
testcase_07 AC 100 ms
40,048 KB
testcase_08 AC 94 ms
39,628 KB
testcase_09 AC 106 ms
41,032 KB
testcase_10 AC 108 ms
40,952 KB
testcase_11 AC 111 ms
40,556 KB
testcase_12 AC 101 ms
40,048 KB
testcase_13 AC 104 ms
40,056 KB
testcase_14 AC 101 ms
39,868 KB
testcase_15 AC 108 ms
41,292 KB
testcase_16 AC 107 ms
40,288 KB
testcase_17 AC 107 ms
41,384 KB
testcase_18 AC 108 ms
40,212 KB
testcase_19 AC 117 ms
41,168 KB
testcase_20 AC 112 ms
41,144 KB
testcase_21 AC 110 ms
41,072 KB
testcase_22 AC 101 ms
40,556 KB
testcase_23 AC 101 ms
39,708 KB
testcase_24 AC 98 ms
40,048 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(Y>=0){
            if(X==0){
                turn=0;
            }else{
                turn=1;
            }
        }else{
            turn=2;
        }

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