結果

問題 No.48 ロボットの操縦
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 15:45:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 911 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 77,672 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-11-21 18:17:33
合計ジャッジ時間 5,562 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,984 KB
testcase_01 AC 111 ms
41,296 KB
testcase_02 AC 113 ms
41,324 KB
testcase_03 AC 110 ms
41,656 KB
testcase_04 AC 113 ms
41,356 KB
testcase_05 AC 119 ms
41,564 KB
testcase_06 AC 106 ms
41,308 KB
testcase_07 AC 115 ms
41,344 KB
testcase_08 AC 115 ms
41,420 KB
testcase_09 AC 117 ms
41,116 KB
testcase_10 AC 108 ms
41,220 KB
testcase_11 AC 119 ms
41,296 KB
testcase_12 AC 108 ms
41,180 KB
testcase_13 AC 117 ms
41,356 KB
testcase_14 AC 119 ms
41,324 KB
testcase_15 AC 116 ms
41,364 KB
testcase_16 AC 116 ms
41,356 KB
testcase_17 AC 113 ms
41,656 KB
testcase_18 AC 115 ms
41,440 KB
testcase_19 AC 106 ms
41,160 KB
testcase_20 AC 104 ms
41,448 KB
testcase_21 AC 119 ms
40,972 KB
testcase_22 AC 108 ms
41,236 KB
testcase_23 AC 117 ms
41,580 KB
testcase_24 AC 116 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int x = koko.nextInt();
        int y = koko.nextInt();
        int l = koko.nextInt();
        int dx = Math.abs(x);
        int dy = Math.abs(y);
        int mx = dx%l;
        int my = dy%l;
        int nx, ny;
        if(mx!=0){
            nx = 1+((dx-mx)/l);
        }else{
            nx =dx/l;
        }
        if(my!=0){
            ny = 1+((dy-my)/l);
        }else{
            ny =dy/l;
        }
        if(x==0&&y==0){
            System.out.println(0);
        }else if(x==0&&y>0){
            System.out.println(ny);
        }else if(x!=0&&y==0){
            System.out.println(nx+1);
        }else if(x!=0&&y>0){
            System.out.println(nx+ny+1);
        }else{
            System.out.println(nx+ny+2);
        }
        }
    }
0