package yukicoder.no113 import kotlin.math.pow import kotlin.math.sqrt /** * エントリポイント */ fun main(args: Array) { val in1 = readLine() print(treasureHunt(in1)) } /** * 宝までの最短距離を返します。 * @param news 方角 */ fun treasureHunt(news: String?): String { if (news == null) { return "" } // [0]:NS, [1]:EW val dir = arrayOf(0, 0) for (n in news) { when (n) { 'N' -> dir[0]++ 'S' -> dir[0]-- 'E' -> dir[1]++ 'W' -> dir[1]-- } } // 南東(NE) val ne = dir[0].toDouble().pow(2) // 北西(SW) val sw = dir[1].toDouble().pow(2) return String.format("%.5f", sqrt(ne + sw)) }