結果
問題 | No.113 宝探し |
ユーザー | バカらっく |
提出日時 | 2019-09-30 23:52:57 |
言語 | Kotlin (2.1.0) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^
ソースコード
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)