結果

問題 No.113 宝探し
ユーザー nCk_cvnCk_cv
提出日時 2016-01-21 02:35:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 467 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 78,420 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-11-16 21:07:58
合計ジャッジ時間 5,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,176 KB
testcase_01 AC 106 ms
41,008 KB
testcase_02 AC 103 ms
41,100 KB
testcase_03 AC 98 ms
39,912 KB
testcase_04 AC 111 ms
40,864 KB
testcase_05 AC 101 ms
40,704 KB
testcase_06 AC 105 ms
40,872 KB
testcase_07 AC 112 ms
41,088 KB
testcase_08 AC 111 ms
41,228 KB
testcase_09 AC 97 ms
39,920 KB
testcase_10 AC 107 ms
41,036 KB
testcase_11 AC 96 ms
39,836 KB
testcase_12 AC 111 ms
41,340 KB
testcase_13 AC 102 ms
40,764 KB
testcase_14 AC 90 ms
39,836 KB
testcase_15 AC 90 ms
39,328 KB
testcase_16 AC 99 ms
40,104 KB
testcase_17 AC 96 ms
40,132 KB
testcase_18 AC 96 ms
40,164 KB
testcase_19 AC 93 ms
39,908 KB
testcase_20 AC 99 ms
39,848 KB
testcase_21 AC 119 ms
41,192 KB
testcase_22 AC 117 ms
41,224 KB
testcase_23 AC 117 ms
41,064 KB
testcase_24 AC 116 ms
40,812 KB
testcase_25 AC 107 ms
40,968 KB
testcase_26 AC 102 ms
40,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] in = sc.next().toCharArray();
		int x = 0;
		int y = 0;
		for(int i = 0; i < in.length; i++) {
			if(in[i] == 'N') y++;
			if(in[i] == 'S') y--;
			if(in[i] == 'W') x--;
			if(in[i] == 'E') x++;
		}
		double ans = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));
		System.out.printf("%.20f\n",ans);
	}
}
0