結果

問題 No.1470 Mex Sum
ユーザー face4face4
提出日時 2021-04-10 14:02:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 16,123 ms
コンパイル使用メモリ 439,272 KB
実行使用メモリ 71,324 KB
最終ジャッジ日時 2024-06-26 03:27:53
合計ジャッジ時間 41,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
51,636 KB
testcase_01 AC 318 ms
51,580 KB
testcase_02 AC 440 ms
53,612 KB
testcase_03 AC 428 ms
53,472 KB
testcase_04 AC 430 ms
53,460 KB
testcase_05 AC 431 ms
53,676 KB
testcase_06 AC 431 ms
53,652 KB
testcase_07 AC 434 ms
53,708 KB
testcase_08 AC 430 ms
53,588 KB
testcase_09 AC 433 ms
53,580 KB
testcase_10 AC 430 ms
53,584 KB
testcase_11 AC 431 ms
53,480 KB
testcase_12 AC 559 ms
70,884 KB
testcase_13 AC 564 ms
70,724 KB
testcase_14 AC 553 ms
70,572 KB
testcase_15 AC 565 ms
70,996 KB
testcase_16 AC 560 ms
70,448 KB
testcase_17 AC 557 ms
70,388 KB
testcase_18 AC 567 ms
70,624 KB
testcase_19 AC 562 ms
70,692 KB
testcase_20 AC 575 ms
70,904 KB
testcase_21 AC 564 ms
71,184 KB
testcase_22 AC 565 ms
71,212 KB
testcase_23 AC 567 ms
70,868 KB
testcase_24 AC 565 ms
71,188 KB
testcase_25 AC 568 ms
70,940 KB
testcase_26 AC 558 ms
70,924 KB
testcase_27 AC 568 ms
71,212 KB
testcase_28 AC 565 ms
70,980 KB
testcase_29 AC 565 ms
71,324 KB
testcase_30 AC 564 ms
71,284 KB
testcase_31 AC 560 ms
71,152 KB
testcase_32 AC 568 ms
71,316 KB
testcase_33 AC 567 ms
71,064 KB
testcase_34 AC 562 ms
71,084 KB
testcase_35 AC 638 ms
71,200 KB
testcase_36 AC 657 ms
71,064 KB
testcase_37 AC 552 ms
68,848 KB
testcase_38 AC 541 ms
68,812 KB
testcase_39 AC 541 ms
68,920 KB
testcase_40 AC 543 ms
68,708 KB
testcase_41 AC 550 ms
68,852 KB
testcase_42 AC 536 ms
68,772 KB
testcase_43 AC 539 ms
68,772 KB
testcase_44 AC 554 ms
68,760 KB
testcase_45 AC 548 ms
68,652 KB
testcase_46 AC 543 ms
68,928 KB
testcase_47 AC 542 ms
68,664 KB
testcase_48 AC 542 ms
68,892 KB
testcase_49 AC 542 ms
68,744 KB
testcase_50 AC 540 ms
68,656 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.toInt() }
    var one = 0
    var two = 0
    var others = 0
    var answer: Long = 0
    a.forEach{
        answer += when(it){
            1 -> 2*one++ + 3*two + 2*others
            2 -> 3*one + 1*two++ + 1*others
            else -> 2*one + 1*two + 1*others++
        }
    }
    println(answer)
}
0