結果

問題 No.1470 Mex Sum
ユーザー face4face4
提出日時 2021-04-10 14:08:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 11,787 ms
コンパイル使用メモリ 429,068 KB
実行使用メモリ 77,228 KB
最終ジャッジ日時 2024-06-26 03:37:21
合計ジャッジ時間 40,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
51,592 KB
testcase_01 AC 301 ms
51,636 KB
testcase_02 AC 415 ms
54,140 KB
testcase_03 AC 418 ms
54,288 KB
testcase_04 AC 410 ms
54,140 KB
testcase_05 AC 427 ms
54,472 KB
testcase_06 AC 414 ms
54,300 KB
testcase_07 AC 417 ms
54,196 KB
testcase_08 AC 446 ms
54,104 KB
testcase_09 AC 411 ms
54,116 KB
testcase_10 AC 415 ms
54,332 KB
testcase_11 AC 415 ms
54,416 KB
testcase_12 AC 561 ms
76,716 KB
testcase_13 AC 556 ms
76,416 KB
testcase_14 AC 562 ms
76,508 KB
testcase_15 AC 558 ms
76,768 KB
testcase_16 AC 559 ms
76,520 KB
testcase_17 AC 557 ms
76,132 KB
testcase_18 AC 558 ms
76,088 KB
testcase_19 AC 554 ms
76,360 KB
testcase_20 AC 561 ms
76,344 KB
testcase_21 AC 553 ms
76,920 KB
testcase_22 AC 555 ms
77,228 KB
testcase_23 AC 564 ms
77,048 KB
testcase_24 AC 560 ms
77,024 KB
testcase_25 AC 565 ms
77,080 KB
testcase_26 AC 550 ms
77,052 KB
testcase_27 AC 557 ms
77,012 KB
testcase_28 AC 582 ms
76,924 KB
testcase_29 AC 553 ms
77,016 KB
testcase_30 AC 553 ms
76,820 KB
testcase_31 AC 549 ms
77,100 KB
testcase_32 AC 554 ms
77,108 KB
testcase_33 AC 547 ms
77,032 KB
testcase_34 AC 554 ms
77,048 KB
testcase_35 AC 549 ms
76,772 KB
testcase_36 AC 556 ms
77,028 KB
testcase_37 AC 536 ms
74,540 KB
testcase_38 AC 537 ms
74,068 KB
testcase_39 AC 532 ms
74,324 KB
testcase_40 AC 542 ms
74,392 KB
testcase_41 AC 535 ms
74,332 KB
testcase_42 AC 531 ms
74,256 KB
testcase_43 AC 534 ms
74,360 KB
testcase_44 AC 530 ms
74,496 KB
testcase_45 AC 559 ms
74,348 KB
testcase_46 AC 537 ms
74,416 KB
testcase_47 AC 539 ms
74,572 KB
testcase_48 AC 542 ms
74,432 KB
testcase_49 AC 536 ms
74,264 KB
testcase_50 AC 542 ms
74,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    val a = readLine()!!.split(" ").map { it.toLong() }
    var one = 0
    var two = 0
    var others = 0
    println(a.map{
        when(it){
            1L -> 2L*one++ + 3*two + 2*others
            2L -> 3L*one + 1*two++ + 1*others
            else -> 2L*one + 1*two + 1*others++
        }
    }.sum())
}
0