結果

問題 No.113 宝探し
ユーザー GrenacheGrenache
提出日時 2015-09-23 20:13:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 3,052 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-11-16 21:00:01
合計ジャッジ時間 6,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,208 KB
testcase_01 AC 109 ms
41,184 KB
testcase_02 AC 109 ms
41,296 KB
testcase_03 AC 114 ms
41,228 KB
testcase_04 AC 118 ms
41,084 KB
testcase_05 AC 114 ms
41,416 KB
testcase_06 AC 109 ms
41,016 KB
testcase_07 AC 99 ms
40,120 KB
testcase_08 AC 102 ms
39,932 KB
testcase_09 AC 111 ms
41,144 KB
testcase_10 AC 108 ms
41,192 KB
testcase_11 AC 96 ms
39,996 KB
testcase_12 AC 107 ms
40,832 KB
testcase_13 AC 112 ms
40,808 KB
testcase_14 AC 117 ms
41,012 KB
testcase_15 AC 111 ms
40,552 KB
testcase_16 AC 114 ms
41,380 KB
testcase_17 AC 115 ms
40,652 KB
testcase_18 AC 112 ms
41,256 KB
testcase_19 AC 98 ms
39,672 KB
testcase_20 AC 96 ms
39,692 KB
testcase_21 AC 99 ms
40,140 KB
testcase_22 AC 96 ms
39,632 KB
testcase_23 AC 114 ms
41,184 KB
testcase_24 AC 109 ms
41,228 KB
testcase_25 AC 101 ms
39,932 KB
testcase_26 AC 101 ms
40,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder113 {

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

        char[] s = sc.next().toCharArray();
        int x = 0;
        int y = 0;
        for (char e : s) {
        	switch (e) {
        	case 'N':
        		y++;
        		break;
        	case 'E':
        		x++;
        		break;
        	case 'W':
        		x--;
        		break;
        	case 'S':
        		y--;
        		break;
        	}
        }

        System.out.printf("%.3f\n", Math.sqrt(x * x + y * y));
        
        sc.close();
    }
}
0