結果

問題 No.275 中央値を求めよ
ユーザー da_louisda_louis
提出日時 2020-02-07 00:41:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 357 ms / 1,000 ms
コード長 269 bytes
コンパイル時間 10,123 ms
コンパイル使用メモリ 433,200 KB
実行使用メモリ 60,404 KB
最終ジャッジ日時 2024-09-25 07:07:04
合計ジャッジ時間 25,242 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
58,916 KB
testcase_01 AC 315 ms
59,168 KB
testcase_02 AC 319 ms
59,060 KB
testcase_03 AC 312 ms
58,864 KB
testcase_04 AC 314 ms
58,868 KB
testcase_05 AC 314 ms
59,052 KB
testcase_06 AC 331 ms
59,236 KB
testcase_07 AC 357 ms
59,992 KB
testcase_08 AC 325 ms
59,316 KB
testcase_09 AC 326 ms
59,264 KB
testcase_10 AC 324 ms
59,116 KB
testcase_11 AC 303 ms
55,848 KB
testcase_12 AC 313 ms
58,820 KB
testcase_13 AC 315 ms
58,816 KB
testcase_14 AC 314 ms
58,880 KB
testcase_15 AC 341 ms
60,276 KB
testcase_16 AC 351 ms
60,404 KB
testcase_17 AC 344 ms
60,140 KB
testcase_18 AC 336 ms
59,152 KB
testcase_19 AC 340 ms
59,968 KB
testcase_20 AC 340 ms
56,252 KB
testcase_21 AC 332 ms
56,332 KB
testcase_22 AC 342 ms
56,392 KB
testcase_23 AC 340 ms
56,456 KB
testcase_24 AC 327 ms
55,224 KB
testcase_25 AC 356 ms
56,156 KB
testcase_26 AC 345 ms
56,088 KB
testcase_27 AC 342 ms
56,252 KB
testcase_28 AC 321 ms
55,268 KB
testcase_29 AC 338 ms
56,336 KB
testcase_30 AC 321 ms
55,384 KB
testcase_31 AC 344 ms
56,072 KB
testcase_32 AC 323 ms
55,232 KB
testcase_33 AC 339 ms
56,100 KB
testcase_34 AC 324 ms
55,120 KB
testcase_35 AC 343 ms
56,088 KB
testcase_36 AC 339 ms
56,036 KB
testcase_37 AC 325 ms
55,520 KB
testcase_38 AC 322 ms
55,528 KB
testcase_39 AC 328 ms
55,292 KB
testcase_40 AC 344 ms
56,444 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p746()
}

fun p746() {
    val n = readLine()!!.toInt()
    val aList = readLine()!!.split(' ').map { it.toDouble() }

    val sorted = aList.sorted()
    val answer = (sorted[(n - 1) / 2] + sorted[n / 2]) / 2

    println(answer)
}
0