結果

問題 No.1374 Absolute Game
ユーザー face4face4
提出日時 2021-07-24 11:52:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 15,211 ms
コンパイル使用メモリ 445,140 KB
実行使用メモリ 74,732 KB
最終ジャッジ日時 2024-07-19 16:21:48
合計ジャッジ時間 32,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
55,184 KB
testcase_01 AC 331 ms
54,972 KB
testcase_02 AC 334 ms
55,032 KB
testcase_03 AC 326 ms
54,976 KB
testcase_04 AC 332 ms
55,048 KB
testcase_05 AC 327 ms
54,988 KB
testcase_06 AC 325 ms
55,308 KB
testcase_07 AC 327 ms
54,916 KB
testcase_08 AC 590 ms
63,144 KB
testcase_09 AC 677 ms
69,356 KB
testcase_10 AC 704 ms
70,416 KB
testcase_11 AC 652 ms
66,636 KB
testcase_12 AC 583 ms
62,620 KB
testcase_13 AC 658 ms
67,764 KB
testcase_14 AC 741 ms
71,784 KB
testcase_15 AC 740 ms
74,328 KB
testcase_16 AC 738 ms
71,656 KB
testcase_17 AC 746 ms
74,540 KB
testcase_18 AC 735 ms
71,816 KB
testcase_19 AC 750 ms
74,732 KB
testcase_20 AC 604 ms
64,020 KB
testcase_21 AC 630 ms
66,232 KB
testcase_22 AC 757 ms
74,124 KB
testcase_23 AC 508 ms
59,320 KB
testcase_24 AC 535 ms
59,896 KB
testcase_25 AC 554 ms
60,324 KB
testcase_26 AC 579 ms
62,768 KB
testcase_27 AC 624 ms
64,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:5:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

import kotlin.math.abs

// editorial
fun main() {
    val n = readLine()!!.toInt()
    var a = readLine()!!.split(" ").map { it.toLong() }
    if (a.sum() < 0) {
        a = a.map { -it }
    }
    a = a.sortedDescending()
    var (x, y) = listOf(0L, 0L)
    for (i in a.indices) {
        if (i % 2 == 0) x += a[i]
        else y += a[i]
    }
    println(abs(x) - abs(y))
}
0