結果

問題 No.1470 Mex Sum
ユーザー face4face4
提出日時 2021-04-10 14:11:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 11,653 ms
コンパイル使用メモリ 430,072 KB
実行使用メモリ 77,092 KB
最終ジャッジ日時 2024-06-26 03:41:01
合計ジャッジ時間 40,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
51,776 KB
testcase_01 AC 302 ms
51,584 KB
testcase_02 AC 413 ms
54,092 KB
testcase_03 AC 412 ms
54,320 KB
testcase_04 AC 429 ms
54,392 KB
testcase_05 AC 439 ms
54,468 KB
testcase_06 AC 410 ms
54,220 KB
testcase_07 AC 422 ms
54,356 KB
testcase_08 AC 422 ms
54,416 KB
testcase_09 AC 419 ms
54,436 KB
testcase_10 AC 410 ms
54,112 KB
testcase_11 AC 431 ms
54,296 KB
testcase_12 AC 553 ms
76,708 KB
testcase_13 AC 549 ms
76,564 KB
testcase_14 AC 557 ms
76,600 KB
testcase_15 AC 556 ms
76,836 KB
testcase_16 AC 555 ms
76,420 KB
testcase_17 AC 557 ms
75,948 KB
testcase_18 AC 550 ms
76,112 KB
testcase_19 AC 555 ms
76,144 KB
testcase_20 AC 551 ms
76,288 KB
testcase_21 AC 559 ms
77,048 KB
testcase_22 AC 552 ms
76,916 KB
testcase_23 AC 557 ms
77,060 KB
testcase_24 AC 549 ms
77,012 KB
testcase_25 AC 556 ms
76,780 KB
testcase_26 AC 548 ms
76,924 KB
testcase_27 AC 554 ms
77,092 KB
testcase_28 AC 556 ms
77,072 KB
testcase_29 AC 563 ms
77,064 KB
testcase_30 AC 561 ms
76,904 KB
testcase_31 AC 555 ms
76,784 KB
testcase_32 AC 559 ms
77,008 KB
testcase_33 AC 546 ms
76,844 KB
testcase_34 AC 551 ms
76,848 KB
testcase_35 AC 549 ms
76,744 KB
testcase_36 AC 554 ms
77,092 KB
testcase_37 AC 532 ms
74,248 KB
testcase_38 AC 535 ms
74,244 KB
testcase_39 AC 539 ms
74,204 KB
testcase_40 AC 532 ms
74,388 KB
testcase_41 AC 530 ms
74,412 KB
testcase_42 AC 537 ms
74,120 KB
testcase_43 AC 542 ms
74,256 KB
testcase_44 AC 536 ms
74,324 KB
testcase_45 AC 542 ms
74,360 KB
testcase_46 AC 542 ms
74,308 KB
testcase_47 AC 535 ms
74,344 KB
testcase_48 AC 530 ms
74,352 KB
testcase_49 AC 533 ms
74,436 KB
testcase_50 AC 555 ms
74,184 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 -> 2*one++ + 3*two + 2*others
            2L -> 3*one + 1*two++ + 1*others
            else -> 2*one + 1*two + 1*others++
        }.toLong()
    }.sum())
}
0