結果

問題 No.113 宝探し
ユーザー marumaru
提出日時 2016-03-23 18:38:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 1,049 bytes
コンパイル時間 3,083 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-11-16 21:11:53
合計ジャッジ時間 6,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
40,156 KB
testcase_01 AC 96 ms
40,120 KB
testcase_02 AC 113 ms
41,216 KB
testcase_03 AC 111 ms
41,260 KB
testcase_04 AC 115 ms
41,168 KB
testcase_05 AC 111 ms
41,252 KB
testcase_06 AC 99 ms
39,936 KB
testcase_07 AC 114 ms
41,564 KB
testcase_08 AC 110 ms
41,160 KB
testcase_09 AC 106 ms
40,692 KB
testcase_10 AC 113 ms
41,064 KB
testcase_11 AC 109 ms
41,016 KB
testcase_12 AC 95 ms
39,444 KB
testcase_13 AC 110 ms
41,064 KB
testcase_14 AC 97 ms
40,192 KB
testcase_15 AC 110 ms
41,132 KB
testcase_16 AC 104 ms
40,928 KB
testcase_17 AC 96 ms
40,244 KB
testcase_18 AC 98 ms
39,888 KB
testcase_19 AC 102 ms
39,716 KB
testcase_20 AC 101 ms
40,148 KB
testcase_21 AC 117 ms
41,244 KB
testcase_22 AC 115 ms
41,152 KB
testcase_23 AC 109 ms
40,996 KB
testcase_24 AC 107 ms
40,992 KB
testcase_25 AC 106 ms
41,164 KB
testcase_26 AC 112 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.HashMap;

public class yukicoder_113 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		String str = stdIn.next();
		String[] array = new String[str.length()];
		
		HashMap<String, Integer> map = new HashMap<String, Integer>();
		map.put(str.substring(0, 1), 1);
		
		for (int i = 1; i < array.length; i++) {
			array[i] = str.substring(i, i + 1);
			
			if (map.containsKey(array[i])) {
				map.put(array[i], map.get(array[i]) + 1);
			} else {
				map.put(array[i], 1);
			}
		}
		
		int north = 0, east = 0, west = 0, south = 0;
		
		if (map.get("N") != null) {
			north = map.get("N") * 1;
		}
		
		if (map.get("E") != null) {
			east = map.get("E") * 1;
		}
		
		if (map.get("W") != null) {
			west = map.get("W") * (-1);
		}
		
		if (map.get("S") != null) {
			south = map.get("S") * (-1);
		}
		
		double height = Math.pow(Math.abs(north + south),2);
		double width = Math.pow(Math.abs(east + west),2);
		
		System.out.println(Math.sqrt(height + width));
	}
}
0