結果

問題 No.999 てん vs. ほむ
ユーザー 箱星箱星
提出日時 2020-02-28 21:26:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 13,338 ms
コンパイル使用メモリ 445,632 KB
実行使用メモリ 78,324 KB
最終ジャッジ日時 2024-10-13 16:41:48
合計ジャッジ時間 26,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
51,552 KB
testcase_01 AC 287 ms
51,448 KB
testcase_02 AC 284 ms
51,564 KB
testcase_03 AC 294 ms
51,548 KB
testcase_04 AC 292 ms
51,620 KB
testcase_05 AC 292 ms
51,860 KB
testcase_06 AC 297 ms
51,664 KB
testcase_07 AC 298 ms
51,576 KB
testcase_08 AC 383 ms
52,740 KB
testcase_09 AC 576 ms
76,588 KB
testcase_10 AC 460 ms
60,568 KB
testcase_11 AC 458 ms
58,868 KB
testcase_12 AC 492 ms
64,624 KB
testcase_13 AC 578 ms
78,324 KB
testcase_14 AC 567 ms
78,260 KB
testcase_15 AC 571 ms
78,296 KB
testcase_16 AC 574 ms
78,264 KB
testcase_17 AC 537 ms
72,568 KB
testcase_18 AC 552 ms
72,376 KB
testcase_19 AC 530 ms
72,704 KB
testcase_20 AC 544 ms
72,704 KB
testcase_21 AC 564 ms
77,984 KB
testcase_22 AC 572 ms
77,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val a = readLine()!!.split(' ').map { it.toInt() }
    var hom = 0L
    var tem = 0L
    for (i in 0 until n) {
        hom += a[2 * i + 1]
        tem += a[2 * i]
    }
    var max = hom - tem
    for (i in 0 until n) {
        hom += a[2 * i] - a[2 * i + 1]
        tem += a[2 * i + 1] - a[2 * i]
        max = Math.max(max, hom - tem)
    }
    println(max)
}
0