結果

問題 No.609 Noelちゃんと星々
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-07 15:35:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,072 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 12,873 ms
コンパイル使用メモリ 437,616 KB
実行使用メモリ 82,028 KB
最終ジャッジ日時 2024-04-30 17:13:26
合計ジャッジ時間 33,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 845 ms
77,880 KB
testcase_01 AC 638 ms
71,488 KB
testcase_02 AC 590 ms
67,144 KB
testcase_03 AC 622 ms
69,252 KB
testcase_04 AC 562 ms
67,104 KB
testcase_05 AC 972 ms
81,896 KB
testcase_06 AC 939 ms
79,820 KB
testcase_07 AC 706 ms
73,672 KB
testcase_08 AC 546 ms
64,680 KB
testcase_09 AC 622 ms
69,056 KB
testcase_10 AC 791 ms
75,808 KB
testcase_11 AC 767 ms
73,560 KB
testcase_12 AC 825 ms
77,728 KB
testcase_13 AC 561 ms
65,068 KB
testcase_14 AC 430 ms
60,664 KB
testcase_15 AC 935 ms
79,940 KB
testcase_16 AC 951 ms
81,792 KB
testcase_17 AC 874 ms
77,684 KB
testcase_18 AC 591 ms
66,916 KB
testcase_19 AC 919 ms
79,704 KB
testcase_20 AC 1,072 ms
82,028 KB
testcase_21 AC 1,019 ms
81,940 KB
testcase_22 AC 1,062 ms
81,988 KB
testcase_23 AC 1,026 ms
81,780 KB
testcase_24 AC 960 ms
81,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:3:7: warning: variable 'n' is never used
  val n = readLine()!!.toInt()
      ^

ソースコード

diff #

fun main(args:Array<String>) {

  val n = readLine()!!.toInt()

  val input = readLine()!!.split(" ").map { it.toLong() }

  val size = input.size
  val median = (input.sorted()[size/2] + input.sorted().reversed()[size/2])/2

  //println(median)
  input.map {
    Math.abs(median - it)
  }.sum().let { println(it) }
}
0