結果

問題 No.113 宝探し
ユーザー abcabc
提出日時 2016-11-05 02:56:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 764 bytes
コンパイル時間 2,414 ms
コンパイル使用メモリ 73,900 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-11-16 21:28:37
合計ジャッジ時間 6,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,388 KB
testcase_01 AC 117 ms
41,380 KB
testcase_02 AC 104 ms
40,308 KB
testcase_03 AC 121 ms
41,176 KB
testcase_04 AC 105 ms
39,848 KB
testcase_05 AC 119 ms
41,016 KB
testcase_06 AC 119 ms
41,056 KB
testcase_07 AC 117 ms
41,368 KB
testcase_08 AC 105 ms
39,848 KB
testcase_09 AC 118 ms
41,268 KB
testcase_10 AC 118 ms
41,240 KB
testcase_11 AC 122 ms
41,076 KB
testcase_12 AC 124 ms
41,132 KB
testcase_13 AC 126 ms
41,064 KB
testcase_14 AC 106 ms
39,848 KB
testcase_15 AC 119 ms
41,132 KB
testcase_16 AC 118 ms
41,444 KB
testcase_17 AC 105 ms
39,844 KB
testcase_18 AC 116 ms
41,116 KB
testcase_19 AC 119 ms
41,384 KB
testcase_20 AC 117 ms
41,008 KB
testcase_21 AC 107 ms
39,844 KB
testcase_22 AC 104 ms
40,284 KB
testcase_23 AC 118 ms
41,304 KB
testcase_24 AC 111 ms
40,652 KB
testcase_25 AC 123 ms
40,940 KB
testcase_26 AC 112 ms
40,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String direction = sc.next();

        int x = 0;
        int y = 0;

        for (int i = 0; i < direction.length(); i++) {

            switch (direction.charAt(i)) {
                case 'N' :
                    y++;
                    break;
                case 'E' :
                    x++;
                    break;
                case 'W' :
                    x--;
                    break;
                case 'S' :
                    y--;
                    break;
            }

        }

        double distance = Math.sqrt((x * x) + (y * y));

        System.out.println(distance);

    }

}
0