結果

問題 No.275 中央値を求めよ
ユーザー uchida_tuchida_t
提出日時 2023-04-25 13:09:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 353 ms / 1,000 ms
コード長 307 bytes
コンパイル時間 12,194 ms
コンパイル使用メモリ 430,876 KB
実行使用メモリ 55,656 KB
最終ジャッジ日時 2024-04-26 18:50:55
合計ジャッジ時間 28,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
55,244 KB
testcase_01 AC 310 ms
55,292 KB
testcase_02 AC 316 ms
55,132 KB
testcase_03 AC 325 ms
55,312 KB
testcase_04 AC 335 ms
55,216 KB
testcase_05 AC 327 ms
55,408 KB
testcase_06 AC 313 ms
55,312 KB
testcase_07 AC 321 ms
55,492 KB
testcase_08 AC 313 ms
55,316 KB
testcase_09 AC 321 ms
55,220 KB
testcase_10 AC 331 ms
55,116 KB
testcase_11 AC 316 ms
51,672 KB
testcase_12 AC 314 ms
55,256 KB
testcase_13 AC 321 ms
55,016 KB
testcase_14 AC 313 ms
55,100 KB
testcase_15 AC 353 ms
55,656 KB
testcase_16 AC 352 ms
55,320 KB
testcase_17 AC 328 ms
55,472 KB
testcase_18 AC 332 ms
55,376 KB
testcase_19 AC 325 ms
55,608 KB
testcase_20 AC 326 ms
55,296 KB
testcase_21 AC 330 ms
55,176 KB
testcase_22 AC 324 ms
55,612 KB
testcase_23 AC 316 ms
55,132 KB
testcase_24 AC 323 ms
55,320 KB
testcase_25 AC 328 ms
55,360 KB
testcase_26 AC 322 ms
55,352 KB
testcase_27 AC 333 ms
55,292 KB
testcase_28 AC 315 ms
55,124 KB
testcase_29 AC 324 ms
55,320 KB
testcase_30 AC 314 ms
55,132 KB
testcase_31 AC 324 ms
55,384 KB
testcase_32 AC 317 ms
55,504 KB
testcase_33 AC 324 ms
55,508 KB
testcase_34 AC 344 ms
55,196 KB
testcase_35 AC 342 ms
55,328 KB
testcase_36 AC 330 ms
55,364 KB
testcase_37 AC 318 ms
55,424 KB
testcase_38 AC 332 ms
55,256 KB
testcase_39 AC 334 ms
55,244 KB
testcase_40 AC 348 ms
55,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
	val num = readLine()!!.toInt()
    val list = readLine()!!.split(" ").map { it.toInt() }.sorted()
    
	val center = num / 2
	if (num % 2 == 0) {
		println((list.get(center - 1).toFloat() + list.get(center).toFloat()) / 2)
	} else {
		println(list.get(center).toFloat())
	}
}
0