結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
51,916 KB
testcase_01 AC 303 ms
51,732 KB
testcase_02 AC 533 ms
81,328 KB
testcase_03 AC 1,325 ms
92,356 KB
testcase_04 AC 339 ms
52,524 KB
testcase_05 AC 1,631 ms
127,316 KB
testcase_06 AC 309 ms
51,432 KB
testcase_07 AC 311 ms
51,724 KB
testcase_08 AC 314 ms
51,720 KB
testcase_09 AC 307 ms
51,480 KB
testcase_10 AC 323 ms
51,724 KB
testcase_11 AC 330 ms
52,200 KB
testcase_12 AC 354 ms
53,420 KB
testcase_13 AC 351 ms
52,908 KB
testcase_14 AC 479 ms
62,812 KB
testcase_15 AC 439 ms
61,296 KB
testcase_16 AC 513 ms
78,360 KB
testcase_17 AC 715 ms
91,120 KB
testcase_18 AC 498 ms
84,888 KB
testcase_19 AC 955 ms
107,744 KB
testcase_20 AC 1,086 ms
108,640 KB
testcase_21 AC 329 ms
52,280 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..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)}.reduce{s, t -> s.add(t)})
    }

    println(ints.size)
}
0