結果
問題 | No.1391 ±1 Abs Sum |
ユーザー | zeronosu77108 |
提出日時 | 2021-02-12 22:37:43 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 14,765 ms |
コンパイル使用メモリ | 446,116 KB |
実行使用メモリ | 112,960 KB |
最終ジャッジ日時 | 2024-07-19 23:28:51 |
合計ジャッジ時間 | 42,320 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 333 ms
55,000 KB |
testcase_01 | AC | 336 ms
54,920 KB |
testcase_02 | AC | 334 ms
54,928 KB |
testcase_03 | AC | 336 ms
54,932 KB |
testcase_04 | AC | 335 ms
55,224 KB |
testcase_05 | WA | - |
testcase_06 | AC | 331 ms
54,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 797 ms
87,276 KB |
testcase_15 | AC | 836 ms
97,296 KB |
testcase_16 | AC | 831 ms
101,596 KB |
testcase_17 | AC | 805 ms
95,604 KB |
testcase_18 | AC | 870 ms
101,980 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 926 ms
112,960 KB |
testcase_32 | AC | 761 ms
89,884 KB |
testcase_33 | AC | 781 ms
96,564 KB |
testcase_34 | AC | 921 ms
102,736 KB |
testcase_35 | AC | 322 ms
51,664 KB |
testcase_36 | AC | 854 ms
102,776 KB |
コンパイルメッセージ
Main.kt:9:23: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long val amin = a.min()!! ^ Main.kt:10:23: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long val amax = a.max()!! ^
ソースコード
import kotlin.collections.* import kotlin.math.* @kotlin.ExperimentalStdlibApi fun main() { val (n, k) = readLine()!!.split(" ").map { it.toInt() } val a = readLine()!!.split(" ").map { it.toLong() }.sorted() val amin = a.min()!! val amax = a.max()!! fun f(ai : Long) : Long { val l = a.map { abs(ai - it) }.toMutableList().sorted() return -l.sum() + l.take(k).sum() * 2 } var ans = minOf(f(amin), f(amax)) if (n%2 == 1) ans = minOf(ans, f(a[n/2])) else { ans = minOf(ans, f((a[n/2-1] + a[n/2]) / 2 ) ) ans = minOf(ans, f((a[n/2-1] + a[n/2]) / 2 +1) ) } println(ans) }