結果

問題 No.1463 Hungry Kanten
ユーザー face4face4
提出日時 2021-04-07 14:22:42
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 12,561 ms
コンパイル使用メモリ 435,484 KB
実行使用メモリ 112,400 KB
最終ジャッジ日時 2024-06-22 13:08:14
合計ジャッジ時間 22,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
56,792 KB
testcase_01 AC 277 ms
56,732 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1,038 ms
112,400 KB
testcase_06 AC 273 ms
56,856 KB
testcase_07 AC 275 ms
57,044 KB
testcase_08 AC 268 ms
56,884 KB
testcase_09 AC 272 ms
57,132 KB
testcase_10 AC 281 ms
56,856 KB
testcase_11 AC 295 ms
56,880 KB
testcase_12 AC 305 ms
57,136 KB
testcase_13 AC 310 ms
57,044 KB
testcase_14 AC 392 ms
63,224 KB
testcase_15 AC 388 ms
64,688 KB
testcase_16 AC 421 ms
73,556 KB
testcase_17 AC 489 ms
93,316 KB
testcase_18 AC 419 ms
88,200 KB
testcase_19 AC 575 ms
98,212 KB
testcase_20 AC 715 ms
102,132 KB
testcase_21 AC 296 ms
56,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val (n, k) = readLine()!!.split(" ").map{it.toInt()}
    val a = readLine()!!.split(" ").map{it.toLong()}

    val ints = mutableSetOf<Long>()
    for(i in 1..(1 shl n)){
        val indexes = mutableSetOf<Int>()
        for(j in 0..n-1){
            if(((i shr j) and 1) == 1)   indexes.add(j)
        }
        if(indexes.size < k)  continue
        ints.add(a.filterIndexed{index,  _ -> indexes.contains(index)}.reduce{s, t -> s*t})
        ints.add(a.filterIndexed{index, _ -> indexes.contains(index)}.sum())
    }

    println(ints.size)
}
0