結果

問題 No.113 宝探し
ユーザー l1267976l1267976
提出日時 2017-03-19 15:50:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 740 bytes
コンパイル時間 2,719 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-04-28 07:55:08
合計ジャッジ時間 6,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,092 KB
testcase_01 AC 102 ms
40,928 KB
testcase_02 AC 94 ms
40,172 KB
testcase_03 AC 104 ms
41,100 KB
testcase_04 AC 98 ms
41,224 KB
testcase_05 AC 102 ms
40,996 KB
testcase_06 AC 99 ms
41,356 KB
testcase_07 AC 103 ms
41,304 KB
testcase_08 AC 99 ms
40,732 KB
testcase_09 AC 90 ms
40,224 KB
testcase_10 AC 107 ms
40,900 KB
testcase_11 AC 91 ms
40,036 KB
testcase_12 AC 91 ms
39,984 KB
testcase_13 AC 101 ms
40,592 KB
testcase_14 AC 91 ms
40,264 KB
testcase_15 AC 103 ms
41,212 KB
testcase_16 AC 100 ms
40,848 KB
testcase_17 AC 101 ms
40,736 KB
testcase_18 AC 101 ms
41,400 KB
testcase_19 AC 100 ms
40,152 KB
testcase_20 AC 100 ms
40,928 KB
testcase_21 AC 100 ms
40,808 KB
testcase_22 AC 105 ms
41,332 KB
testcase_23 AC 98 ms
40,908 KB
testcase_24 AC 100 ms
41,312 KB
testcase_25 AC 103 ms
40,840 KB
testcase_26 AC 87 ms
39,628 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