結果

問題 No.113 宝探し
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 23:41:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 708 bytes
コンパイル時間 3,194 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-11-16 21:39:36
合計ジャッジ時間 6,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No113 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        String guide = s.next();
        char[] c = guide.toCharArray();
        int east = 0;
        int north = 0;
        for (int i = 0; i < c.length; i++) {
            if (c[i] == 'N') {
                north++;
            } else if (c[i] == 'E') {
                east++;
            } else if (c[i] == 'S') {
                north--;
            } else if (c[i] == 'W') {
                east--;
            }
        }
        east = Math.abs(east);
        north = Math.abs(north);
        System.out.println(Math.sqrt(east * east + north * north));
    }
}
0