結果

問題 No.113 宝探し
ユーザー dazydazy
提出日時 2016-09-13 04:39:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 3,777 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-11-16 21:27:12
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,716 KB
testcase_01 AC 109 ms
40,876 KB
testcase_02 AC 112 ms
41,016 KB
testcase_03 AC 113 ms
41,020 KB
testcase_04 AC 110 ms
41,096 KB
testcase_05 AC 97 ms
39,712 KB
testcase_06 AC 104 ms
41,260 KB
testcase_07 AC 116 ms
40,728 KB
testcase_08 AC 107 ms
41,388 KB
testcase_09 AC 106 ms
40,988 KB
testcase_10 AC 107 ms
41,112 KB
testcase_11 AC 107 ms
41,136 KB
testcase_12 AC 106 ms
40,960 KB
testcase_13 AC 106 ms
40,872 KB
testcase_14 AC 105 ms
40,908 KB
testcase_15 AC 108 ms
41,040 KB
testcase_16 AC 96 ms
39,712 KB
testcase_17 AC 112 ms
41,244 KB
testcase_18 AC 94 ms
39,464 KB
testcase_19 AC 97 ms
39,712 KB
testcase_20 AC 99 ms
39,720 KB
testcase_21 AC 109 ms
41,180 KB
testcase_22 AC 98 ms
39,952 KB
testcase_23 AC 98 ms
40,056 KB
testcase_24 AC 113 ms
41,016 KB
testcase_25 AC 107 ms
40,772 KB
testcase_26 AC 112 ms
40,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String S = scan.next();
        int[] c = {0, 0};
        for (int i = 0; i < S.length(); i++) {
            news(S.charAt(i), c);
        }
        System.out.println(Math.pow((c[0]*c[0] + c[1]*c[1]), 0.5));
    }

    public static void news (char x, int[] c) {
        if (x=='N') c[1]++;
        else if (x=='E') c[0]++;
        else if (x=='W') c[0]--;
        else if (x=='S') c[1]--;
    }
}
0