結果

問題 No.113 宝探し
ユーザー dazydazy
提出日時 2016-09-13 04:39:28
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

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