結果

問題 No.113 宝探し
ユーザー atkrymatkrym
提出日時 2016-10-25 21:12:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 531 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-16 21:28:20
合計ジャッジ時間 6,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,972 KB
testcase_01 AC 121 ms
41,384 KB
testcase_02 AC 118 ms
40,984 KB
testcase_03 AC 111 ms
40,744 KB
testcase_04 AC 106 ms
40,768 KB
testcase_05 AC 115 ms
41,260 KB
testcase_06 AC 97 ms
39,884 KB
testcase_07 AC 112 ms
41,132 KB
testcase_08 AC 112 ms
40,952 KB
testcase_09 AC 101 ms
40,308 KB
testcase_10 AC 113 ms
40,964 KB
testcase_11 AC 105 ms
40,100 KB
testcase_12 AC 113 ms
41,436 KB
testcase_13 AC 115 ms
41,472 KB
testcase_14 AC 102 ms
39,988 KB
testcase_15 AC 114 ms
41,216 KB
testcase_16 AC 104 ms
39,844 KB
testcase_17 AC 118 ms
40,948 KB
testcase_18 AC 118 ms
41,192 KB
testcase_19 AC 125 ms
41,024 KB
testcase_20 AC 109 ms
40,216 KB
testcase_21 AC 120 ms
41,272 KB
testcase_22 AC 107 ms
40,264 KB
testcase_23 AC 122 ms
41,308 KB
testcase_24 AC 121 ms
41,320 KB
testcase_25 AC 112 ms
39,972 KB
testcase_26 AC 122 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int x = 0;
        int y = 0;
        String s = sc.next();
        for (int i = 0;i < s.length();i++) {
            if (s.charAt(i) == 'N') y++;
            if (s.charAt(i) == 'E') x++;
            if (s.charAt(i) == 'W') x--;
            if (s.charAt(i) == 'S') y--;
        }
        
        System.out.println(Math.sqrt(Math.pow(x,2)+Math.pow(y,2)));
    }
}
0