結果

問題 No.113 宝探し
ユーザー yagi2yagi2
提出日時 2017-04-25 11:06:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 502 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-11-16 21:32:38
合計ジャッジ時間 5,545 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
40,192 KB
testcase_01 AC 103 ms
40,752 KB
testcase_02 AC 112 ms
41,072 KB
testcase_03 AC 105 ms
41,140 KB
testcase_04 AC 94 ms
39,712 KB
testcase_05 AC 104 ms
40,844 KB
testcase_06 AC 103 ms
40,904 KB
testcase_07 AC 104 ms
41,036 KB
testcase_08 AC 91 ms
40,092 KB
testcase_09 AC 108 ms
40,872 KB
testcase_10 AC 103 ms
41,036 KB
testcase_11 AC 102 ms
41,108 KB
testcase_12 AC 107 ms
41,060 KB
testcase_13 AC 101 ms
41,128 KB
testcase_14 AC 92 ms
39,912 KB
testcase_15 AC 106 ms
41,160 KB
testcase_16 AC 106 ms
41,628 KB
testcase_17 AC 103 ms
40,808 KB
testcase_18 AC 104 ms
41,148 KB
testcase_19 AC 116 ms
41,108 KB
testcase_20 AC 117 ms
41,088 KB
testcase_21 AC 102 ms
40,728 KB
testcase_22 AC 104 ms
40,840 KB
testcase_23 AC 109 ms
40,932 KB
testcase_24 AC 128 ms
41,108 KB
testcase_25 AC 106 ms
41,260 KB
testcase_26 AC 117 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

        String[] S = sc.next().split("");

        int T = 0;
        int Y = 0;
        for(String s : S) {
            if ("N".equals(s)) T++;
            if ("E".equals(s)) Y++;
            if ("W".equals(s)) Y--;
            if ("S".equals(s)) T--;
        }

        System.out.println(Math.sqrt(Math.pow(Math.abs(T), 2) + Math.pow(Math.abs(Y), 2)));
    }
}
0