結果

問題 No.1463 Hungry Kanten
ユーザー face4face4
提出日時 2021-04-10 15:51:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,683 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 13,618 ms
コンパイル使用メモリ 443,120 KB
実行使用メモリ 127,288 KB
最終ジャッジ日時 2024-06-26 05:07:50
合計ジャッジ時間 27,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
51,508 KB
testcase_01 AC 320 ms
51,324 KB
testcase_02 AC 571 ms
78,820 KB
testcase_03 AC 1,421 ms
93,356 KB
testcase_04 AC 366 ms
52,744 KB
testcase_05 AC 1,683 ms
127,288 KB
testcase_06 AC 323 ms
51,768 KB
testcase_07 AC 322 ms
51,800 KB
testcase_08 AC 326 ms
51,648 KB
testcase_09 AC 328 ms
51,568 KB
testcase_10 AC 336 ms
52,076 KB
testcase_11 AC 351 ms
52,176 KB
testcase_12 AC 366 ms
53,344 KB
testcase_13 AC 357 ms
53,004 KB
testcase_14 AC 476 ms
62,480 KB
testcase_15 AC 461 ms
60,992 KB
testcase_16 AC 542 ms
78,516 KB
testcase_17 AC 758 ms
91,392 KB
testcase_18 AC 621 ms
86,280 KB
testcase_19 AC 1,037 ms
109,152 KB
testcase_20 AC 1,141 ms
108,388 KB
testcase_21 AC 351 ms
52,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger
fun String.toBigInteger() = BigInteger.valueOf(this.toLong())

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

    val ints = mutableSetOf<BigInteger>()
    for(i in 1..(1 shl n)){
        val indexes = mutableSetOf<Int>()
        for(j in 0 until n){
            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)}.reduce{s, t -> s.add(t)})
    }

    println(ints.size)
}
0