結果

問題 No.48 ロボットの操縦
ユーザー S1hoS1ho
提出日時 2017-02-20 17:38:02
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,906 bytes
コンパイル時間 3,932 ms
コンパイル使用メモリ 76,884 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-12-30 10:39:58
合計ジャッジ時間 13,288 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
41,200 KB
testcase_01 AC 144 ms
41,376 KB
testcase_02 WA -
testcase_03 AC 4,328 ms
41,068 KB
testcase_04 WA -
testcase_05 AC 149 ms
41,100 KB
testcase_06 AC 153 ms
41,064 KB
testcase_07 AC 160 ms
40,072 KB
testcase_08 WA -
testcase_09 AC 147 ms
41,012 KB
testcase_10 AC 145 ms
40,832 KB
testcase_11 AC 146 ms
41,224 KB
testcase_12 WA -
testcase_13 AC 131 ms
39,748 KB
testcase_14 WA -
testcase_15 AC 150 ms
41,164 KB
testcase_16 AC 149 ms
41,200 KB
testcase_17 AC 151 ms
41,124 KB
testcase_18 AC 146 ms
41,060 KB
testcase_19 AC 148 ms
41,204 KB
testcase_20 AC 147 ms
41,176 KB
testcase_21 AC 138 ms
40,656 KB
testcase_22 WA -
testcase_23 AC 143 ms
41,100 KB
testcase_24 AC 144 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Robot {
    
    static int x;
    static int y;
    static int l;
    static int x1 = 0;
    static int y1 = 0;
    static int count = 0;

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        x = scanner.nextInt();
        y = scanner.nextInt();
        l = scanner.nextInt();
        
        x1 = 0;
        y1 = 0;
       
        
        //初期状態のまま進めない
        if(y < 0){
            
            //回転してx方向へ移動
            moveX();
            
            //回転して-y方向へ
            count++;
            while( (y1 -= l) > y){
                count++;
            }
            
            if((y1 += l) != y){
                    count++;
            }
            
        }else if(y > 0){
            
            //回転せずy方向へ
            while( (y1 += l) < y){
                count++;
            }
            
            if((y1 -= l) != y){
                    count++;
            }
            
            //回転してx方向へ移動
            moveX();
            
        }else{
            //回転してx方向へ移動
            moveX();
        }
        
        System.out.println(count);

    }
    
    static void moveX(){
        
        if(x == 0){
            return;
        }
        
        count++;
        
        if(x<0){
                while( (x1 -= l) > x){
                count++;
                }
                
                if((x1 += l) != x){
                    count++;
                }
                
            }else if(x>0){
                
                while( (x1 += l) > x){
                count++;
                }   
                
                if((x1 -= l) != x){
                    count++;
                }
                
            }
    } 
}
0