結果

問題 No.609 Noelちゃんと星々
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-07 15:35:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,050 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 11,776 ms
コンパイル使用メモリ 432,728 KB
実行使用メモリ 82,028 KB
最終ジャッジ日時 2024-11-20 14:15:35
合計ジャッジ時間 33,531 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 887 ms
77,776 KB
testcase_01 AC 653 ms
71,628 KB
testcase_02 AC 604 ms
67,076 KB
testcase_03 AC 633 ms
71,392 KB
testcase_04 AC 575 ms
66,884 KB
testcase_05 AC 1,006 ms
81,952 KB
testcase_06 AC 882 ms
79,868 KB
testcase_07 AC 725 ms
73,636 KB
testcase_08 AC 550 ms
64,756 KB
testcase_09 AC 636 ms
69,128 KB
testcase_10 AC 791 ms
75,708 KB
testcase_11 AC 738 ms
73,632 KB
testcase_12 AC 836 ms
77,852 KB
testcase_13 AC 554 ms
65,040 KB
testcase_14 AC 435 ms
60,788 KB
testcase_15 AC 923 ms
79,960 KB
testcase_16 AC 1,050 ms
81,860 KB
testcase_17 AC 884 ms
77,724 KB
testcase_18 AC 611 ms
66,996 KB
testcase_19 AC 942 ms
79,808 KB
testcase_20 AC 1,005 ms
82,028 KB
testcase_21 AC 981 ms
81,832 KB
testcase_22 AC 1,017 ms
82,024 KB
testcase_23 AC 887 ms
81,956 KB
testcase_24 AC 997 ms
81,920 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