結果

問題 No.113 宝探し
ユーザー バカらっくバカらっく
提出日時 2019-09-30 23:52:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 11,763 ms
コンパイル使用メモリ 429,748 KB
実行使用メモリ 49,956 KB
最終ジャッジ日時 2024-11-16 22:16:01
合計ジャッジ時間 20,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
49,724 KB
testcase_01 AC 254 ms
49,676 KB
testcase_02 AC 251 ms
49,956 KB
testcase_03 AC 257 ms
49,860 KB
testcase_04 AC 252 ms
49,748 KB
testcase_05 AC 255 ms
49,884 KB
testcase_06 AC 254 ms
49,788 KB
testcase_07 AC 248 ms
49,956 KB
testcase_08 AC 253 ms
49,824 KB
testcase_09 AC 245 ms
49,892 KB
testcase_10 AC 252 ms
49,764 KB
testcase_11 AC 252 ms
49,948 KB
testcase_12 AC 257 ms
49,528 KB
testcase_13 AC 257 ms
49,524 KB
testcase_14 AC 257 ms
49,772 KB
testcase_15 AC 263 ms
49,740 KB
testcase_16 AC 255 ms
49,896 KB
testcase_17 AC 259 ms
49,728 KB
testcase_18 AC 271 ms
49,836 KB
testcase_19 AC 261 ms
49,672 KB
testcase_20 AC 247 ms
49,752 KB
testcase_21 AC 263 ms
49,672 KB
testcase_22 AC 262 ms
49,532 KB
testcase_23 AC 268 ms
49,844 KB
testcase_24 AC 269 ms
49,868 KB
testcase_25 AC 273 ms
49,536 KB
testcase_26 AC 260 ms
49,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.max

fun main(arr:Array<String>) {
    val lastPos = readLine()!!.map { getMove(it) }.reduce { acc, unit -> Pos(acc.x + unit.x, acc.y + unit.y ) }
    val ans = Math.sqrt(Math.pow(lastPos.x.toDouble(), 2.toDouble()) + Math.pow(lastPos.y.toDouble(), 2.toDouble()))
    println(ans)
}

fun getMove(dir:Char):Pos {
    val tmp = when {
        dir == 'E' -> Pos(1, 0)
        dir == 'W' -> Pos(-1, 0)
        dir == 'N' -> Pos(0, 1)
        else -> Pos(0, -1)
    }
    return tmp
}
class Pos(var x:Int, var y:Int)
0