結果

問題 No.113 宝探し
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-11 10:40:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 291 ms / 5,000 ms
コード長 215 bytes
コンパイル時間 14,170 ms
コンパイル使用メモリ 432,832 KB
実行使用メモリ 52,684 KB
最終ジャッジ日時 2024-11-16 22:23:15
合計ジャッジ時間 20,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
52,684 KB
testcase_01 AC 262 ms
49,612 KB
testcase_02 AC 257 ms
49,684 KB
testcase_03 AC 270 ms
49,692 KB
testcase_04 AC 262 ms
49,756 KB
testcase_05 AC 254 ms
49,520 KB
testcase_06 AC 255 ms
49,496 KB
testcase_07 AC 255 ms
49,624 KB
testcase_08 AC 258 ms
49,772 KB
testcase_09 AC 251 ms
49,752 KB
testcase_10 AC 255 ms
49,724 KB
testcase_11 AC 252 ms
49,772 KB
testcase_12 AC 255 ms
49,640 KB
testcase_13 AC 256 ms
49,608 KB
testcase_14 AC 251 ms
49,612 KB
testcase_15 AC 246 ms
49,388 KB
testcase_16 AC 291 ms
49,400 KB
testcase_17 AC 254 ms
49,732 KB
testcase_18 AC 248 ms
49,492 KB
testcase_19 AC 253 ms
49,644 KB
testcase_20 AC 251 ms
49,504 KB
testcase_21 AC 250 ms
49,684 KB
testcase_22 AC 250 ms
49,728 KB
testcase_23 AC 249 ms
49,492 KB
testcase_24 AC 255 ms
49,672 KB
testcase_25 AC 259 ms
49,404 KB
testcase_26 AC 251 ms
49,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val k = readLine()!!.toCharArray()
    println(kotlin.math.hypot((k.count { it == 'N' } - k.count() { it == 'S' }).toDouble(),
        (k.count { it == 'W' } - k.count { it == 'E' }).toDouble()))
}
0