結果

問題 No.275 中央値を求めよ
ユーザー javyjavy
提出日時 2015-11-02 22:38:58
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 367 ms / 1,000 ms
コード長 611 bytes
コンパイル時間 11,397 ms
コンパイル使用メモリ 435,584 KB
実行使用メモリ 55,584 KB
最終ジャッジ日時 2024-11-19 14:57:43
合計ジャッジ時間 26,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
55,236 KB
testcase_01 AC 333 ms
55,424 KB
testcase_02 AC 337 ms
55,268 KB
testcase_03 AC 327 ms
55,192 KB
testcase_04 AC 331 ms
55,160 KB
testcase_05 AC 332 ms
55,132 KB
testcase_06 AC 329 ms
55,200 KB
testcase_07 AC 351 ms
55,248 KB
testcase_08 AC 336 ms
55,248 KB
testcase_09 AC 336 ms
55,160 KB
testcase_10 AC 342 ms
55,096 KB
testcase_11 AC 315 ms
51,940 KB
testcase_12 AC 324 ms
54,868 KB
testcase_13 AC 331 ms
55,256 KB
testcase_14 AC 326 ms
55,268 KB
testcase_15 AC 355 ms
55,436 KB
testcase_16 AC 367 ms
55,552 KB
testcase_17 AC 349 ms
55,520 KB
testcase_18 AC 352 ms
55,228 KB
testcase_19 AC 350 ms
55,404 KB
testcase_20 AC 345 ms
55,296 KB
testcase_21 AC 342 ms
55,424 KB
testcase_22 AC 344 ms
55,464 KB
testcase_23 AC 345 ms
55,152 KB
testcase_24 AC 343 ms
55,212 KB
testcase_25 AC 355 ms
55,224 KB
testcase_26 AC 344 ms
55,472 KB
testcase_27 AC 349 ms
55,584 KB
testcase_28 AC 342 ms
55,060 KB
testcase_29 AC 351 ms
55,264 KB
testcase_30 AC 341 ms
55,156 KB
testcase_31 AC 343 ms
55,400 KB
testcase_32 AC 341 ms
55,176 KB
testcase_33 AC 347 ms
55,268 KB
testcase_34 AC 336 ms
55,168 KB
testcase_35 AC 353 ms
55,424 KB
testcase_36 AC 349 ms
55,148 KB
testcase_37 AC 338 ms
55,148 KB
testcase_38 AC 340 ms
55,428 KB
testcase_39 AC 338 ms
55,088 KB
testcase_40 AC 352 ms
55,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/02.
 */
fun main(args: Array<String>) {
    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }
    fun readLineInt() : Int {
        val str = readLine() as String
        return str.toInt()
    }
    val num = readLineInt()
    val numList = readLineIntArray().sorted()
    if(num % 2 == 1) {
        println(numList[num/2])
    } else {
        println((numList[num/2-1].toDouble() + numList[num/2].toDouble())/2)
    }
}
0