結果

問題 No.113 宝探し
ユーザー l1267976l1267976
提出日時 2017-03-19 15:50:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 740 bytes
コンパイル時間 3,535 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-11-16 21:31:59
合計ジャッジ時間 8,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,808 KB
testcase_01 AC 132 ms
53,776 KB
testcase_02 AC 128 ms
53,640 KB
testcase_03 AC 130 ms
53,892 KB
testcase_04 AC 129 ms
53,620 KB
testcase_05 AC 131 ms
53,556 KB
testcase_06 AC 129 ms
54,016 KB
testcase_07 AC 131 ms
53,804 KB
testcase_08 AC 130 ms
53,800 KB
testcase_09 AC 130 ms
53,904 KB
testcase_10 AC 131 ms
53,616 KB
testcase_11 AC 134 ms
53,800 KB
testcase_12 AC 132 ms
53,844 KB
testcase_13 AC 130 ms
54,236 KB
testcase_14 AC 129 ms
53,656 KB
testcase_15 AC 130 ms
53,772 KB
testcase_16 AC 129 ms
54,156 KB
testcase_17 AC 129 ms
53,792 KB
testcase_18 AC 129 ms
53,792 KB
testcase_19 AC 132 ms
53,956 KB
testcase_20 AC 128 ms
53,868 KB
testcase_21 AC 129 ms
53,660 KB
testcase_22 AC 131 ms
53,692 KB
testcase_23 AC 129 ms
53,932 KB
testcase_24 AC 129 ms
54,168 KB
testcase_25 AC 131 ms
53,968 KB
testcase_26 AC 131 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No113 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();

        int x = 0;
        int y = 0;

        for (int i = 0; i < s.length(); i++) {
            char c = s.charAt(i);

            switch (c) {
            case 'N':
                y++;
                break;
            case 'E':
                x--;
                break;
            case 'W':
                x++;
                break;
            case 'S':
                y--;
                break;
            }
        }

        double result = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));

        System.out.println(result);

        sc.close();
    }

}
0